@charset "utf-8";

header{
  position: static;
}
main .heading{
  background-color: #FAFAFA;
  padding:  3em 0;
}
main .bodying .table{
  padding: 4em 0;
}
main .bodying .table th,
main .bodying .table td{
  padding: .5em 1em;
  border: 1px solid var(--c_border_gray);
}
main .bodying .table th{
  white-space: nowrap;
  background-color: #FAFAFA;
}
footer{
  margin-top: 10em;
}
@media screen and (max-width: 520px){
  main .heading{
    padding: 2em 6vw;
    line-height: 1.25;
  }
  main .heading .title{
    font-size: 6.2vw;
  }
  main .bodying{
    padding: 0 4vw;
  }
  main .bodying .table{
    padding: 2em 0;
  }
  main .bodying .table th,
  main .bodying .table td{
    display: block;
  }
  main .bodying .table th{
    white-space: nowrap;
    background-color: #FAFAFA;
  }
  footer{
    margin-top: 5em;
  }
}