@charset "utf-8";

/* Block: page-visual */
.page-visual::before {
  display: none;
}

.page-visual {
  z-index: 1;
  height: 45vh;
  background-color: #ccc;
}

/* section--privacy */
.privacy__content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* 各セクション */
.privacy__section {
  margin-bottom: 40px;
}

.privacy__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  position: relative;
}

.privacy__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background-color: #0082c8;
}

.privacy__text {
  margin-bottom: 16px;
}

.privacy__intro {
  margin-bottom: 16px;
}

/* リスト */
.privacy__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.privacy__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.privacy__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0082c8;
  font-weight: bold;
}

/* 住所 */
.privacy__address {
  margin-top: 24px;
  font-style: normal;
  line-height: 1.6;
  background: #fff;
  border-left: 4px solid #0082c8;
  padding: 8px 16px;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .page-visual {
    height: 35vh;
  }

  .privacy__content {
    font-size: 15px;
  }

  .privacy__title {
    font-size: 18px;
  }
}