@charset "UTF-8";
input[type='text'], input[type='tel'],input[type='password'],input[type='email'] {
  border-radius: 4px;
  border: 1px solid #707070;
  padding: 9px 10px;
  min-width: 30em;
}
.formItem {
  margin: 2rem 0;
}
.fromItemTtlArea {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.formItemTxtBox {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.iconHissu {
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 1px 6px;
  border-radius: 4px;
  color: #FFF;
  background-color: #F40206;
}
.buttonBlock {
  margin-bottom: 6rem;
}
.buttonArea {
  display: flex;
  justify-content: center;
  gap: 0 50px;
  margin-bottom: 1.5rem;
}
.textLink {
  color: #003399;
  text-decoration: underline;
}
.textLink:hover {
  color: #F63;
}
.textLink:visited {
  color: #60C;
}
.errorMessegeAreaTop {
  margin-top: 2rem;
}
.errorMessegeAreaTop .txt {
  color: #F40206;
}
@media screen and (max-width: 768px) {
  .inner02 {
    max-width: 100%;
    min-width: auto;
  }
  input[type='text'], input[type='tel'],input[type='password'],input[type='email'] {
    min-width: auto;
    width: 100%;
  }
  .formItem {
    margin: 1rem 0 1.5rem;
  }
  .fromItemTtlArea {
    margin-bottom: 1rem;
  }
  .formItemTxtBox {
    width: 100%;
    gap: 0.75rem 0;
  }
  .buttonArea {
    flex-direction: column;
    gap: 1.5rem 0;
    margin-bottom: 3rem;
  }
}