@charset "utf-8";
/* CSS Document */

.ngh__page-kv{
  width: 100%;
  height: 400px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ngh__page-kv-ttl{
  color: #fff;
  font-family: "游明朝", "YuMincho", serif;
  font-size: 50px;
  font-weight: 300;
  text-shadow: 3px 2px 5px rgba(0, 0, 0, 0.24);
}
.ngh__page-kv-ttl-caption{
  font-size: 18px;
  color: #fff;
  text-shadow: 3px 2px 5px rgba(0, 0, 0, 0.24);
}
.contact .ngh__page-kv{
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/contact_kv.jpg");
  background-position: center;
}

.ngh__contactform{
  padding: 100px 30px;
}
.ngh__contactform-inner{
  max-width: 1300px;
  margin: 0 auto;
}
.ngh__contactform-headline{
  text-align: center;
  line-height: 2;
  margin-bottom: 100px;
}

.ngh__contactform-connection{
  padding: 20px;
  border:solid 1px #45413D;
  text-align: center;
}
.ngh__contactform-connection p{
}
.ngh__contactform-connection a{
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
  color: #45413D;
}

.ngh__contactform-box{
  margin-top: 60px;
}

.form-row{
  display: flex;
  gap:20px;
}
.form-row + .form-row{
  margin-top: 40px;
}
.form-row .form-item{
  width: 300px;
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
}
.form-row .form-item .required{
  font-size: 15px;
  margin-left: 6px;
  padding: 1px 5px 2px;
  border-radius: 4px;
  color: #fff;
  background-color: #DF381D;
}
.form-row > p{
  flex-shrink: 0;
  width: 300px;
}
.form-row .form-input{
  flex:1;
}
.form-row .form-input input[type="text"],
.form-row .form-input input[type="email"],
.form-row .form-input input[type="tel"]{
  width: 100%;
  padding: 10px;
  font-size: 17px;
  border: solid 1px #ccc;
}
.form-row .form-input textarea{
  width: 100%;
  height: 250px;
  padding: 10px;
  font-size: 17px;
  border: solid 1px #ccc;
  resize: vertical;
}
.agree{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.agree a{
  text-decoration: underline;
}
.submit-button{
  margin:40px auto 0;
  display: flex;
  justify-content: center;
}
.submit-button input{
  display: flex;
  justify-content:center;
  align-items: center;
  width: 320px;
  height: 80px;
  border-radius: 50vh;
  border:solid 1px #45413D;
  letter-spacing: 1em;
  padding-left: 1em;
  text-align: center;
  font-size: 26px;
  background-color: #fff;
  font-family: "游明朝", "YuMincho", serif;
  cursor: pointer;
}
.submit-button input:hover{
  background-color: #45413D;
  color:#fff;
}

@media (max-width: 767px) {
  .ngh__contactform-headline{
    text-align: left;
  }
  .form-row{
    flex-direction: column;
  }
}