@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #323746;
  margin: 0;
  padding: 0;
  background-color: #ebf0fa;
}
body p {
  margin: 0;
}

.head {
  display: grid;
  height: 160px;
  background-color: #323746;
  align-items: end;
  justify-items: center;
}
.head img {
  height: 100px;
  width: auto;
  transform: translateY(1px);
}
@media (max-width: 600px) {
  .head img {
    width: 80%;
    transform: translateY(1px);
  }
}

.content {
  max-width: 600px;
  display: block;
  margin: auto;
}
.content .title {
  text-align: center;
  padding-top: 10px;
}
.content .terms {
  font-family: "Noto Sans JP", sans-serif;
  color: #323746;
  padding: 10px;
}
.content .terms h3 {
  padding-top: 10px;
}
.content .terms ul {
  padding-left: 10px;
  list-style: none;
  counter-reset: number;
}
.content .terms li {
  position: relative;
  padding-left: 40px;
}
.content .terms li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}
