@charset "UTF-8";

.page-title {
  display: grid;
  place-items: center;
  letter-spacing: -.02em;
  background: url(../../assets/images/common/page-title-bg.webp) no-repeat center / cover;
  padding: 118px 0 54px 0;
  margin: 0 0 100px 0;
}

.page-title h1 {
  color: var(--sakrea-accent-color);
  font-size: 1.5em;
  position: relative;
}

.page-title h1::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 28px;
  border-left: 2px dotted var(--sakrea-accent-color);
  bottom: 1px;
  left: -80px;
  rotate: -131.19deg;
}

.page-title h1::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 28px;
  border-left: 2px dotted var(--sakrea-accent-color);
  top: 1px;
  right: -80px;
  rotate: -131.19deg;
}

.privacypolicy-sec > p,
.privacypolicy-sec > section {
  margin: 0 0 50px 0;
}

.privacypolicy-sec h2 {
  font-size: 1.5em;
  margin: 0 0 10px 0;
}

.privacypolicy-sec ul li {
  padding: 0 0 0 16px;
  position: relative;
}

.privacypolicy-sec ul li::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  aspect-ratio: 1;
  background: var(--sakrea-accent-color);
  border-radius: 50%;
  top: 12px;
  left: 4px;
}

.window-close-btn a {
  display: grid;
  place-items: center;
  width: 280px;
  height: 45px;
  background: var(--sakrea-main-color);
  border-radius: 40px;
  box-shadow: var(--pink-box-shadow);
  margin: 150px auto 150px auto;
  position: relative;
}

/*
@media (max-width: 1023px) and (min-width: 769px) {
}
*/

@media screen and (max-width:768px) {
  .page-title {
    padding: 110px 0 54px 0;
    margin: 0 0 50px 0;
  }
  .page-title h1 {
    font-size: 1.15em;
    font-weight: 500;
  }
  .page-title h1::before {
    left: -30px;
  }
  .page-title h1::after {
    right: -30px;
  }
  .privacypolicy-sec h2 {
    font-size: 1.15em;
    font-weight: 500;
  }
  .privacypolicy-sec > section {
    margin: 0 0 30px 0;
  }
  .window-close-btn a {
    margin: 100px auto 100px auto;
  }
}