@charset "UTF-8";

.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 180px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

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

table.formTable{
	width:100%;
	margin:0 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;
}
.required {
    display: inline-block;
    background: #cc0000;
    font-weight: normal;
    color: #fff;
    padding: 1px 5px;
    font-size: 11px;
    float: right;
}

.button {
  width: 150px;
  height: 50px;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  color: #3399FF;
  border: solid 2px #3399FF;
  border-radius: 3px;
  transition: .4s;

}
.button:hover {
  background: #3399FF;
  color: white;
}
h1{
  text-align: center;
  color:#fff;
  font-weight: normal;
  background: #00437C;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
  margin-top: 0px;

}


h2{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #7db4e6;/*左線*/
}
input[type="text"]{
	font-size:100%;
	height:30px;
}
textarea {
	font-size:100%;
	height:5em;
}

footer{
    width: 100%;
    background-color: #00437C;
    color: #fff;
    text-align: center;
    font-weight: normal;
    padding: 30px 0;
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
}



body {font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic'}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {

.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 180px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
	line-height:30px;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:50px;
}

.required {
    display: inline-block;
    background: #cc0000;
    font-weight: normal;
    color: #fff;
    padding: 1px 5px;
    font-size: 11px;
    float: right;
}

.button {
  width:100%;
  height: 50px;
  font-size: 15px;
  display: inline-block;
  /*padding: 0.3em 1em;*/
  text-decoration: none;
  color: #3399FF;
  border: solid 2px #3399FF;
  border-radius: 3px;
  transition: .4s;
  /*background: #0059b3;     /* 背景色     */
 /*color: #ffffff;     /* 文字色     */
  /*opacity: 1;           /* 透明度     */
}
.button:hover {
  background: #3399FF;
  color: white;
}

h1{
  text-align: center;
  color:#fff;
  font-size:100%;
  font-weight: normal;
  background: #00437C;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
  margin-top: 0px;
}

h2{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #7db4e6;/*左線*/
}

#footer{
  text-align: center;
  color:#fff;
  font-size:80%;
  font-weight: normal;
  background: #00437C;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
}

body {font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic'}

}