@charset "UTF-8";
.news-detail h1 {
  font-weight: 700;
  font-size: 4.2rem;
}
.news-detail h2 {
  font-weight: 700;
  font-size: 3.2rem;
}
.news-detail h3 {
  font-weight: 700;
  font-size: 2.4rem;
}
.news-detail h4 {
  font-weight: 700;
  font-size: 1.8rem;
}
.news-detail h5 {
  font-weight: 700;
  font-size: 1.6rem;
}
.news-detail h6 {
  font-weight: 500;
  font-size: 1.6rem;
}
.news-detail p + p {
  margin-top: 1em;
}
.news-detail li {
  margin-bottom: 0.5em;
}
.news-detail ul {
  list-style: disc;
  padding-left: 1em;
}
.news-detail ol {
  counter-reset: item;
  list-style-type: none;
}
.news-detail ol li {
  padding-left: 1.5em;
  position: relative;
}
.news-detail ol li:before {
  counter-increment: item;
  content: counter(item) "．";
  position: absolute;
  left: 0;
}
.news-detail a {
  text-decoration: underline;
}
@media only screen and (min-width: 751px) {
  .news-detail a:hover {
    text-decoration: none;
  }
}
.news-detail table {
  border-radius: calc(40px * 0.5);
}
@media only screen and (max-width: 750px) {
  .news-detail table {
    border-radius: 2.6666666667vw;
  }
}
.news-detail table tr:first-child > *:first-child {
  border-top-left-radius: calc(40px * 0.5);
}
@media only screen and (max-width: 750px) {
  .news-detail table tr:first-child > *:first-child {
    border-top-left-radius: 2.6666666667vw;
  }
}
.news-detail table tr:first-child > *:last-child {
  border-top-right-radius: calc(40px * 0.5);
}
@media only screen and (max-width: 750px) {
  .news-detail table tr:first-child > *:last-child {
    border-top-right-radius: 2.6666666667vw;
  }
}
.news-detail table tr th {
  text-align: left;
  background-color: #28292b;
  color: white;
}