/* page-privacy-policy.css */
@charset "UTF-8";

/* Header */
a.header-scroll__link {
  display: none;
}
.fv-walker {
  width: 330px;
  position: absolute;
  inset: 100px 0 0 0;
  margin: auto;
}
.header-nav__circle::after {
  width: 80px;
}
.header-scroll__image img {
  height: 450px;
  object-fit: cover;
  align-self: initial;
  width: 100%;
}
.header-nav {
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  bottom: -10px;
  width: 480px;
}
.header-scroll__container {
  padding-bottom: 160px;
  background-color: #f4f4f4;  
}

@media screen and (max-width: 768px) { 
  .header-scroll__container {
    padding-bottom: 100px;
  }
  .header-scroll__image img {
    height: 250px;
  }
  .header-nav {
    bottom: -5px;
    width: 80%;
    max-width: 345px;
  }
  .fv-walker {
    width: 200px;
    inset: 45px 0 0 0;
  }
  .header-nav__circle::after {
    width: 188%;
  }
}

@media screen and (max-width: 415px) { 
  .header-nav__circle::after {
      width: 162%;
  }
}


/* Privacy Policy Section */
.privacy-policy-section {
  background-color: #f4f4f4;
  padding: 80px 0 120px;
}

.privacy-policy-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Privacy Policy Header */
.privacy-policy-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 80px;
}

.privacy-policy-header__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #000000;
}

.privacy-policy-header__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
}

/* Privacy Policy Content */
.privacy-policy-content {
  max-width: 1050px;
  margin: 0 auto;
}

.privacy-policy-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 60px 80px;
}

/* H2 Styling */
.privacy-policy-h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #271f8c;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #271f8c;
  position: relative;
}

.privacy-policy-h2:first-child {
  margin-top: 0;
}

/* H3 Styling */
.privacy-policy-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #369cdf;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.privacy-policy-h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 100%;
  background-color: #369cdf;
  border-radius: 3px;
}

/* Paragraph Styling */
.privacy-policy-card p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333333;
  margin-bottom: 20px;
}

.privacy-policy-card p:last-child {
  margin-bottom: 0;
}

/* Link Styling */
.privacy-policy-card a {
  color: #369cdf;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.privacy-policy-card a:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .privacy-policy-section {
    padding: 0px 0 60px;
  }

  .privacy-policy-header {
    margin-bottom: 40px;
  }

  .privacy-policy-header__subtitle {
    font-size: 16px;
  }

  .privacy-policy-header__title {
    font-size: 50px;
  }

  .privacy-policy-card {
    padding: 40px 30px;
  }

  .privacy-policy-h2 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .privacy-policy-h3 {
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 18px;
    padding-left: 18px;
  }

  .privacy-policy-card p {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 500px) {
  .privacy-policy-header__title {
    font-size: 36px;
  }

  .privacy-policy-card {
    padding: 30px 20px;
  }

  .privacy-policy-h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .privacy-policy-h2::before {
    width: 60px;
  }

  .privacy-policy-h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
  }

  .privacy-policy-h3::before {
    width: 5px;
  }

  .privacy-policy-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
}

