.doc_BTN{
  position: fixed;
  right: 0;
  bottom: 60px;
  width: 200px;
  & img{
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .doc_BTN{
    width: 160px;
  }
}
@media screen and (max-width: 500px) {
  .doc_BTN{
    width: 135px;
  }
}


.documentList,
.document_formWrap{
  box-sizing: border-box;
  padding-bottom: 100px;
}
.document_formWrap figure,
.documentList figure{
  margin: 0;
}
.document_formWrap img,
.documentList img{
  width: 100%;
  height: auto;
  box-shadow: 0.3rem 0.4rem 0.3rem 0 rgba(173, 173, 173, 0.3);
  margin-bottom: 1em;
}
.document_formWrap .documentTitle,
.documentList .documentTitle{
  font-weight: 800;
  font-size: 24px;
}
.document_formWrap p,
.documentList p{
  color: #666;
  line-height: 1.2;
}

.documentBtn{
  display: block;
  width: 100%;
  background-color: #E61F19;
  color: #fff;
  padding: .5em;
  border-radius: 1.5em;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
}
.documentBtn:hover{
  color: #fff;
  background-color: #a11511;
}

/* アーカイブ */
ul.documentList{
  list-style: none;
}
ul.documentList li{
  margin-bottom: 50px;
}

@media (min-width: 600px) {
  ul.documentList{
    display: flex;
    flex-wrap: wrap;
    gap: 50px 10%;
  }
  ul.documentList li{
    width: 45%;
    margin-bottom: 0;
  }
}
/* シングル */
.formArea label{
  display: inline-block;
}
.formArea dl div{
  display: flex;
  margin-bottom: .7em;
}
.formArea dl div dt{
  width: 20%;
  margin-right: 5%;
}
.formArea dl div dd{
  flex: 1;
  margin: 0;
}

.formArea dl div.your-name dd:last-child{
  margin-left: 2.5%;
}

.formArea input[type="text"],
.formArea input[type="email"]{
  width: 100%;
}
.formArea input[type="submit"]{
  background-color: #E61F19 !important;
  border-color: #E61F19 !important;
}

@media (min-width: 740px) {
  .document_formWrap{
    display: flex;
  }
  .document_formWrap .documentArea{
    width: 30%;
    margin-right: 5%;
  }
  .document_formWrap .formArea{
  flex: 1;
  }
}