@charset "utf-8";

html {
  font-size: 62.5%;
}
body {
  font-size: 1.4em;
  font-family: serif;
  background-color: #818000;
  background-repeat: no-repeat;
  max-width: 100%;
}
/* 上段で指定した10pxを14pxにしている（PC上）、レスポンシブで字を大きめに設定し直せる */

* {
  
  font-family: sans-serif;
}

.title {
  display: inline-block;
  background-color: #818000;
  padding-left: 10%;
  height: 200px;
  color: #fff;
  display: flex;
}

.title h1 {
  padding-top: 30px;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: row;
}
.title p {
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  text-orientation: upright;
  display: flex;
  flex-direction: row;
  padding-left: 3px;
  padding-top: 5px;
}

.form-area {
  width: 100vh;
  max-width: 90%;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
}

.form-area dl {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: flex-end;
  flex-wrap: wrap;
}

dl {
  margin-top: 15px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
}
dt {
  text-align: right;
  padding-right: 10px;
  padding-top: 9px;
}

dd {
  width: calc(100% - 10em);
  color: #313131;
}

.input-text {
  width: 100%;
  max-width: 800px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.message {
  width: 100%;
  height: 260px;
  padding: 10px;
  line-height: 1.5;
}

.submit-button {
  background: #eee;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  max-width: 260px;
  padding: 10px 35px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  top: -80px;
  margin-right: 25%;
}
.submit-button:hover {
  background: #313131;
  color: #fff;
}
.logomini {
  display: block;
  margin: auto;
}

.submit-button:hover:after {
  border-color: #fff;
}
