/* CSS Document */
body {
  background-color: #F1F5F7;
}

.privacy-header {
  background-image: url(../img/shimanami.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 45%;
  background-blend-mode: multiply;
  background-color: rgba(125, 191, 253, 0.9176470588);
  height: 300px;
  display: grid;
}
.privacy-header > * {
  grid-area: 1/-1;
}
.privacy-header .band {
  justify-self: center;
  align-self: center;
}
.privacy-header .band h1 {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.2em;
}

.privacy {
  margin: 80px auto;
}
.privacy h2 {
  background: linear-gradient(90deg, #005EAD 0%, #32AFCA 100%);
  border-left: 5px solid #32AFCA;
  padding: 0.5rem 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}
.privacy p {
  margin-bottom: 40px;
}
.privacy ul {
  margin-bottom: 40px;
}
.privacy ul li {
  list-style-type: disc;
  margin-left: 32px;
}

@media (max-width: 960px) {
  .privacy-header {
    height: 300px;
  }
  .privacy-header .band h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 520px) {
  .privacy-header {
    height: 160px;
  }
  .privacy {
    margin: 40px auto;
  }
}/*# sourceMappingURL=privacy.css.map */