body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.access{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;             
}

.access h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;

}

.access p{
  font-size: 20px;
  text-indent: 1em;
  margin-bottom: 15px;
  line-height: 2;
}

.request-form,
.mail-form{
  display: inline-block;
  width: fit-content;
  background: papayawhip;
  padding: 10px 16px;
  border-radius: 24px;
  color: darkblue;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid darkblue;
  margin-top: 20px;
  text-align: center;
  line-height: 1.4;
}

.request-form:hover,
.mail-form:hover{
  background: darkblue;
  color: papayawhip;

}


@media (max-width: 1024px){

  .access{
    min-height: calc(100vh - 50px);
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
  }

  .access h1{
    font-size: 24px;
  }

  .access p{
    font-size: 14px;
    margin-bottom: 10px;
    text-indent: 1em;
    line-height: 1.5;
    padding-left:1.6em;
  }
  

}