/*
想定サイズ
最大幅：1024px->1200px
最小幅： 320px

配色は相性のいい色を検索(https://coolors.co)して使用しています。
サイトのイメージに合わせて変更してください。
白：#F6F7EB
赤：#E94F37
黒：#393E41
青：#3F88C5
緑：#44BBA4
->#53BB44
*/

/*----------------------------------------------------
全ファイル共通のCSS
----------------------------------------------------*/
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.main {
  padding-bottom: 22px; /* footer分の高さ */
}

body {
  position: relative;
  min-height: 100vh;
  background: #F6F7EB; /* fallback for old browsers */
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*----------------------------------------------------
headerのCSS
----------------------------------------------------*/
header {
  /*background: #44BBA4;*/
  background: #53BB44;
  text-align: center;
  z-index: 10;
  margin-bottom: 25px
}

header h1 {
  padding: 25px 0;
  font-size: 25px;
  color: #fff;
}

input[type="text"] {
  ime-mode:active;
}

/*----------------------------------------------------
footerのCSS
----------------------------------------------------*/
footer {
  /*background: #393E41;*/
  background: #53BB44;
  text-align: center;
  z-index: 10;
  position: absolute;
  bottom: 0px;
  width: 100%;
}

footer p {
  padding: 5px 0;
  font-size: 12px;
  color: #fff;
}