/* mail CSS */
@charset "UTF-8";

body {
  font-family: 'Sawarabi Gothic', sans-serif;
  color: #312028;
  background-color: #AFAF6933;
}

img {
  max-width: 100%;
}

ul,li {
  list-style: none;
}

h2 {
  font-family: 'Sawarabi Mincho', serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.7;
}

.SP-only {
  display: block;
}

.PC-only {
  display: none;
}

/* ユーザー登録画面 */
header .inner {
  width: 100%;
  height: 80px;
  background-image: url(/images/mainvisual/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .inner img {
  width: 300px;
  height: auto;
}

.signup {
  height: calc(100vh - 80px);
  padding: 0 15px;
  margin-top: 100px;
}

dt {
  font-weight: normal;
  margin-bottom: 10px;
}

dd input,textarea {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border: 1px solid #312028;
  border-radius: 6px;
  padding: 0 10px;
}

button {
  display: block;
  width: 300px;
  height: 60px;
  background-color: #AFAF69;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  margin: 50px auto 0;
  border-radius: 6px;
}
/* ユーザー登録画面終わり */


/* 入力フォーム */
.mail {
  height: calc(100vh - 80px);
  padding: 0 15px;
  margin-top: 30px;
}

.mail dl {
  margin-bottom: 20px;
}


/* 入力フォーム終わり */



/* ********************************************
  PC版レスポンシブ
*********************************************** */
@media screen and (min-width:1024px){
  .signup,
  .mail {
    max-width: 960px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }


}