body {
  color: #151514;
  background-color: #eee;
  line-height: 1.75;
  margin: 0;
  /* ↓↓↓ 追加：サイト全体のフォントをゴシック体に指定 ↓↓↓ */
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a {
  color: #a59aca;
}

.banner {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  height: 278px;
  background: #316a8b;
}

.content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
  max-width: 640px;
  margin: -100px auto 0;
}

.form-contaienr {
  max-width: 640px;
  width: 100%;
  margin: -16px auto;
  background-color: #fff;
  display: block;
  padding: 36px;
  z-index: 10;
  position: relative;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.12);
}

.form-title {
  text-align: center;
  width: auto;
  /* ↓↓↓ 修正：heightをmin-heightに変更 ↓↓↓ */
  min-height: 218px; 
  padding: 0 40px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 0%;
  font-size: 2em;
}

@media (max-width: 640px) {
  .content {
    top: 0;
    width: auto;
    padding: 0;
  }
  .form-contaienr {
    width: auto;
    padding: 16px;
  }
  .form-title {
    /* ↓↓↓ 修正：heightをmin-heightに変更 ↓↓↓ */
    min-height: 170px;
    font-size: 1.5em;
    padding: 0 20px;
    /* 重複していたため、片方のfont-sizeは削除 */
  }
  .banner {
    height: 170px;
  }
}