@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap');

body {
  color: #151514;
  background-color: #eee;
  line-height: 1.75;
  font-family: 'Noto Sans JP', sans-serif !important;
}

a {
  color: #a59aca;
}

.banner {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  background: #001765;
}

.content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}

.content::after{
  content: "©コゲツ産業株式会社";
  position:absolute;
  padding: 30px 0;
  left:50%;
  transform: translateX(-50%)
}

.form-contaienr {
  max-width: 840px;
  margin: 0 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 {
  width: auto;
  height: 218px;
  padding: 0 40px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative; 
}

.form-title::before{
  content: "コゲツ産業グループ";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.9em;
  font-style: italic;
}

@media (max-width: 640px) {
  .banner {
    height: 180px;
  }
  .content {
    top: 0;
    width: auto;
    padding: 0;
  }
  .form-contaienr {
    width: auto;
    padding: 16px;
  }
  .form-title {
    height: 150px;
    font-size: 1.5em;
    padding: 20px 20px 0 20px;
  }
  .form-title::before{
    font-size: 0.8em;
  }
}

