@charset "utf-8";

section {
  width: 70%;
  margin: 5rem auto;
}

h2 {
  font-size: 2em;
  color: #000;
  line-height: 1.5em;
  margin: 1.5rem 0;
}

h2::after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  background: #B4BED5;
  margin-top: 0.5rem;
}

.content p {
  font-size: 1.1rem;
  font-weight: lighter;
  margin-bottom: 2rem;
  line-height: 2.5rem;
}

.about_staff02_container form {
  background-color: #dcf2fa;
  padding: 3rem 0;
}

.form_cont {
  background-color: #dcf2fa;
  padding: 1.5em 7.5em;
  display: flex;
  align-items: center;
}

.label_title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 220px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3em;
  justify-content:space-between;
  margin-right: 1.5rem;
}

.comp {
  color: white;
  background-color: #BA1111;
}

.any {
  color: white;
  background-color: #707070;
}

.comp, .any {
  font-size: 14px;
  display: block;
  width: 50px;
  text-align: center;
  margin-right: 0.3em;
  padding: 0.3em 0;
}

.form_cont input, .form_cont textarea, select {
  background-color: white;
  border: solid 1px #003616;
  padding: 0.5em;
  line-height: 1.5rem;
}

.form_cont input, .form_cont textarea, select {
  margin: 0.5em;
}

.foem_submit input {
  font-size: 1.2rem;
    color: white;
    background-color: #17458f;
    padding: 1.5em 2.5em;
    display: block;
    margin: 2em auto;
    border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.thanks {
  text-align: center;
  margin-bottom: 10rem;
}

.thanks h2::after {
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background: #B4BED5;
    margin-top: 1.5rem;
}

.thanks p {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.totop{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 5rem;
  background: #dcf2fa;
  color: #00a2e0;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.totop:hover {
  background-color: #17458f;
  color: #fff;
}

@media screen and (max-width:767px){

  .content p {
    font-size: 1.3rem;
  }
  
  .form_cont {
    padding: 1.5rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .label_title {
    width: auto;
  }
}