@charset "UTF-8";

.contents-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.contents-title p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.contents-title a {
  margin-left: 1rem;
}
.contents-title p a {
  margin-left: 0;
}
.contents-title > a {
  position: relative;
  display: inline-block;
}
.contents-title > a::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% - 2rem);
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--text-color);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: top right;
  transition: transform 0.2s ease;
}
.contents-title > a:hover::after {
  transform: scaleX(1);
  transform-origin: top left;
}
.content-box {
  margin-bottom: 2rem;
}
.content-box h3 {
  position: relative;
  font-size: 1.625rem;
  font-weight: 600;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.content-box h3::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--aqua);
}
.content-box ul li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
}
.content-box ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.content-box ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contents-title a {
    margin-left: 0;
  }
  .content-box h3 {
    font-size: 1.25rem;
  }
}
