.privacy-policy {
  background: #faf9f5;
  padding: 80px 0;
  color: #4b3a34;
}

.privacy-policy .container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #94c2c3;
  margin-top: 16px;
}

.page-title .highlight-circle {
  position: absolute;
  left: -40px;
  top: 33%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: rgba(228, 153, 130, 0.5);
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 40px;
  color: #999;
}

.privacy-content h2 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: bold;
}

.privacy-content p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content li {
  list-style: disc;
  margin-bottom: 8px;
}

/* マーカー */
.privacy-content h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding: 0 4px;
  z-index: 1;
}

.privacy-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 14px;
  background: #b5d7d8;
  /* サイトの緑 */
  z-index: -1;
  border-radius: 4px;
}

.info a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {

  .page-title .highlight-circle {
    position: absolute;
    left: -10px;
    top: 20%;
    width: 70px;
    height: 70px;
  }
}