body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.cancel{
  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;             
}

.cancel h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;

}

.cancel p{
  font-size: 20px;
  text-indent: 1em;
  margin-bottom: 15px;
  line-height: 2;
}

.cancel-limit{
  background: #fff8dc;
  padding: 8px 12px;
  border-radius: 6px;
  margin:8px 0 16px;
  font-size: 20px;
  line-height: 2;
}


@media (max-width: 1024px){

  .cancel{
    min-height: calc(100vh - 50px);
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
  }

  .cancel h1{
    font-size: 24px;
  }
  
  .cancel p{
    font-size: 14px;
    line-height: 2;
  }

  .cancel-limit{
    font-size: 14px;
    line-height: 2;
  }


}