@charset "UTF-8";

.anti-area {
  margin-bottom: 12rem;
}

.anti-area h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #e9ecee;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.anti-area h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.anti-area p {
  font-size: 1.6rem;
  line-height: 2;
}
.anti-area p a{
  color: var(--color-main);
  text-decoration: underline;
}

.anti-area p a.hover {
  text-decoration: initial;
}

.anti-area p.mb4 {
  margin-bottom: 4rem;
}
.anti-area p.mb6 {
  margin-bottom: 6rem;
}
.anti-area ul {
  counter-reset: listnum;
}
.anti-area ul li {
  margin-bottom: 4rem;
}
.anti-area ul li:last-child {
  margin-bottom: 0;
}
.anti-area ul li h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.anti-area ul li h4::before {
  counter-increment: listnum;
  content: "（" counter(listnum) "）";
}

.compliance-link {
  max-width: 28rem;
  margin: 0 0 8rem auto;
}
.compliance-link a {
  font-size: 1.6rem;
  font-weight: bold;
  min-height: 5rem;
  border-radius: 10rem;
  border: 1px solid #e9ecee;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0068b7;
  position: relative;
  z-index: 0;
}
.compliance-link a::after {
  content: "";
  width: 0.7rem;
  display: inline-block;
  aspect-ratio: 1;
  border-bottom: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform-origin: right top;
  transform: rotate(-45deg);
  position: absolute;
  right: 3rem;
}
.compliance-link a.hover {
  border: 1px solid #0068b7;
  color: #fff;
  background-color: #0068b7;
}
.compliance-link a.hover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
