@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  max-width: 800px;
  margin: 0 auto;
}
h1 {
  text-align: center;
  margin: 30px auto;
}
.container {
  position: relative;
}
.content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #333;
}
.data {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem;
  background: rgba(248, 106, 248);
  border-radius: 7px;
  box-shadow: 3px 3px 7px purple;
  z-index: 100;
}
table.data th,
table.data td {
  border: 1px solid #333;
  padding: 0.3rem 0.5rem;
}
table.data th {
  background: rgb(254, 184, 254);}
table.data td {
background: #fff;}
.content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-indent: 1rem;
}

.start-line,
.end-line {
  position: fixed;
  width: 100%;
  height: 2px;
  background: #333;
  z-index: 100;
}
.start-line {
  top: 100px;
  left: 0;
}
.start-line::before {
  position: fixed;
  content: "スタートライン";
  top: 70px;
  left: 10px;
  background: #fff;
}
.end-line::before {
  position: fixed;
  content: "エンドライン";
  bottom: 70px;
  left: 10px;
  background: #fff;
}

.end-line {
  bottom: 100px;
  left: 0;
}

@media (max-width: 480px) {
  table.data{
    font-size: .8rem;
  }
}