body {
  font-family: 'Hiragino Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #0b4c3d;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

main {
  flex: 1;
  margin-top: 64px;
}

.mv {
  height: 280px;
}

.mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-size: 24px;
}

.card {
  margin-top: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 8px;
}

th {
  width: 120px;
  background-color: #fafafa;
}

tr:not(:last-child) {
  border-bottom: 1px solid #dedede;
}

footer {
  padding: 16px 16px calc(env(safe-area-inset-bottom) + 16px);
  background-color: #f4b3c2;
  color: #0b4c3d;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 160px;
  }

  th {
    width: 80px;
  }

  section {
    padding: 32px 16px;
  }
}