@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: rgb(67, 65, 61);
}

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (min-width: 768px) {
  .page {
    width: 1000px;
    margin: 0 auto;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page {
    padding: calc(20 * 100vw / 440);
  }
}
.page h1 {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page h1 {
    font-size: calc(24 * 100vw / 440);
  }
}
.page .top-text {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page .top-text {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page .top-text {
    margin-top: calc(30 * 100vw / 440);
    font-size: calc(14 * 100vw / 440);
  }
}
.page hr {
  color: rgb(67, 65, 61);
}
@media screen and (min-width: 768px) {
  .page hr {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page hr {
    margin-top: calc(30 * 100vw / 440);
  }
}
@media screen and (min-width: 768px) {
  .page dl {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page dl {
    margin-top: calc(30 * 100vw / 440);
  }
}
.page dl dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page dl dt {
    margin: 30px 0 10px;
    padding: 8px 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .page dl dt {
    margin: calc(30 * 100vw / 440) 0 calc(10 * 100vw / 440);
    padding: calc(8 * 100vw / 440) calc(10 * 100vw / 440);
    font-size: calc(18 * 100vw / 440);
  }
}
.page dl dd {
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page dl dd {
    padding: 0 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page dl dd {
    padding: 0 calc(10 * 100vw / 440);
    font-size: calc(14 * 100vw / 440);
  }
}
.page dl dd strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page dl dd ul {
    margin: 10px 0;
    padding-left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page dl dd ul {
    margin: calc(10 * 100vw / 440) 0;
    padding-left: calc(14 * 100vw / 440);
  }
}
.page dl dd ul li {
  list-style: disc;
  line-height: normal;
}
.page dl dd ul.inner li {
  list-style: circle;
}
@media screen and (min-width: 768px) {
  .page dl dd p {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .page dl dd p {
    font-size: calc(14 * 100vw / 440);
    margin: 0 0 calc(10 * 100vw / 440) 0;
  }
}
.page dl dd p a {
  color: blue;
  text-decoration: none;
}
.page dl dd p a:hover {
  text-decoration: underline;
}