@import url("fonts.css");

/*
  PRIVACY POLICY page styles.
  This page has a simple hero and one text-heavy white content area.
*/

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "NotoSansJP-VariableFont_wght", "ZenKakuGothicNew-Regular", sans-serif;
  color: #ffffff;
  background-color: #00193b;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* Page hero. */
.privacy-hero {
  min-height: 420px;
  margin-top: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 25, 59, 0.52), rgba(0, 25, 59, 0.72)),
    url("image/プライバシーポリシー.jpg") center center / cover no-repeat,
    #00193b;
}

.privacy-hero-text h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", "ShipporiMincho-Bold", serif;
  font-size: clamp(2rem, 6vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  margin: 0;
  font-family: "ShipporiMincho-Medium", "NotoSansJP-VariableFont_wght", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

/* Policy text body. */
.privacy-section {
  padding: 80px 32px;
  background-color: #ffffff;
  color: #00193b;
}

.privacy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-inner > p,
.privacy-inner p,
.privacy-inner li {
  line-height: 1.9;
}

.privacy-inner section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #d9e0ea;
}

.privacy-inner h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.privacy-inner ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

/* Tablet. */
@media (max-width: 1180px) {
.privacy-hero {
    margin-top: 0;
  }
}

/* Smartphone. */
@media (max-width: 560px) {
.privacy-hero {
    min-height: 320px;
    padding: 64px 18px;
  }

  .privacy-section {
    padding: 58px 24px;
  }
}

/* Narrow smartphone. */
@media (max-width: 420px) {
  .privacy-hero {
    min-height: 290px;
  }

  .hero-subtitle {
    letter-spacing: 0.12em;
    line-height: 1.7;
  }

  .privacy-section {
    padding: 48px 18px;
  }

  .privacy-inner section {
    margin-top: 30px;
    padding-top: 24px;
  }
}
