/* ===== Privacy Policy Page Styles (styles13.css) ===== */

/* ===== Header Dropdown (shared) ===== */
.header-dropdown-wrap {
  position: relative;
}
.header-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, rgba(251,233,237,0.5), rgba(234,244,255,0.5));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.5) inset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}
.header-dropdown.open {
  max-height: 200px;
  opacity: 1;
}
.header-dropdown-item {
  padding: 12px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-dropdown-item:hover {
  background: rgba(117,177,255,0.12);
}
.header-nav-item .dropdown-icon {
  transition: transform 0.3s;
}
.header-nav-item.dropdown-open .dropdown-icon {
  transform: rotate(180deg);
}

/* ===== FV (Hero) ===== */
.s13-fv {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #75B1FF, #FF7576);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.s13-fv-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin-top: 54px;
}

/* ===== Content Layout ===== */
.s13-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 66px 160px 88px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ===== Section ===== */
.s13-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== Intro Paragraph ===== */
.s13-intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===== Policy List ===== */
.s13-policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.s13-policy-item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-primary);
}
.s13-policy-item::before {
  content: '';
  display: block;
  width: 2px;
  flex-shrink: 0;
  background: var(--brand-vivid-pink);
  border-radius: 1px;
}

/* ===== Contact Box ===== */
.s13-contact-box {
  background: #F7F7F7;
  padding: 20px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.s13-contact-box p {
  margin: 0;
}

/* ===== Signature ===== */
.s13-signature {
  text-align: right;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.s13-signature p {
  margin: 0;
}
.s13-spacer {
  height: 8px;
}

/* ============================================= */
/* ===== SP Responsive (max-width: 767px) ===== */
/* ============================================= */
@media (max-width: 767px) {

  body { overflow-x: hidden; }

  /* ===== FV ===== */
  .s13-fv {
    height: 400px;
  }
  .s13-fv-title {
    font-size: 26px;
    margin-top: 0;
  }

  /* ===== Content ===== */
  .s13-content {
    padding: 44px 12px 44px;
    gap: 32px;
  }

  /* ===== Section ===== */
  .s13-section {
    gap: 20px;
  }

  /* ===== Intro ===== */
  .s13-intro {
    font-size: 15px;
  }

  /* ===== Policy List ===== */
  .s13-policy-list {
    gap: 16px;
  }
  .s13-policy-item {
    font-size: 16px;
    line-height: 1.8;
    gap: 12px;
  }

  /* ===== Contact Box ===== */
  .s13-contact-box {
    font-size: 15px;
    padding: 20px 16px;
  }

  /* ===== Signature ===== */
  .s13-signature {
    font-size: 15px;
  }

}
