@charset "utf-8";

/* 共通のスタイル */

body{
  font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  background-color: #181818;
  padding: 1rem;
  box-sizing: border-box;
}

h1{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 0 1rem 0;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}
table{
  margin: 3rem 0 1rem 0;
  width: 100rem;
}
table td,table th{
  padding: 0.8rem 0.4rem;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
  border: 1px solid #fff;
}
table th.hea{
  font-size: 1rem;
}
table td{}
p{
  position: absolute;
  left: 1rem;
  width: 1620px;
  line-height: 1.4;
}


/* ########### 599px以下 ########### */
@media (max-width: 599px) {

  h1{
    font-size: 6vw;
  }

  p{
    font-size: 1rem;
  }

}




/* ########### 600px以上～768px以下 ########### */
@media (min-width: 600px) and (max-width: 768px) {}



/* ########### 769px以上 ########### */
@media (min-width: 769px) {}



/* ########### 1000px以上 ########### */
@media (min-width: 1000px) {}







