@charset "utf-8";

/* ============================================================
   ページヘッダー
============================================================ */
#page-header {
  width: 100%;
  height: 300px;
  background-image: url(../privacy/img/topimg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-header__logo {
  position: absolute;
  top: 32px;
  left: 48px;
  z-index: 2;
}

.page-header__logo img {
  width: 120px;
  height: auto;
  display: block;
}

.page-header__inner {
  padding: 0 48px;
  margin-top: 120px;
}

.page-header__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  color: #03407a;
  margin: 0 0 8px;
  line-height: 1.2;
}

.page-header__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.page-header__sub-text {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  line-height: 1;
}

.page-header__sub-line {
  display: block;
  width: 200px;
  height: 2px;
  background-color: #03407a;
  flex-shrink: 0;
}


/* ============================================================
   プライバシーポリシー本文
============================================================ */
.privacy-section {
  padding: 80px 48px;
}

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

/* リード文 */
.privacy__lead {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #d0dce8;
}

/* 各条項ブロック */
.privacy__block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #d0dce8;
}

.privacy__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 見出し */
.privacy__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #03407a;
  margin: 0 0 20px;
  line-height: 1.4;
}

.privacy__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background-color: #03407a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 2px;
  flex-shrink: 0;
  padding: 0 8px;
}

/* 本文テキスト */
.privacy__text {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
  margin: 0 0 16px;
}

.privacy__text:last-child {
  margin-bottom: 0;
}

/* サブブロック（【】タイトル付き） */
.privacy__sub-block {
  margin-bottom: 20px;
}

.privacy__sub-block:last-child {
  margin-bottom: 0;
}

.privacy__sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #03407a;
  margin: 0 0 8px;
  line-height: 1.6;
}

/* リスト */
.privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy__list li {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.privacy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #03407a;
}

/* リンクブロック */
.privacy__link-block {
  margin-top: 16px;
  padding: 16px 20px;
  background-color: #f3f7fa;
  border-radius: 4px;
}

.privacy__link-block + .privacy__link-block {
  margin-top: 12px;
}

.privacy__link-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  line-height: 1.6;
}

.privacy__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy__link-list li {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.privacy__link-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #03407a;
}

.privacy__link-list a {
  color: #03407a;
  text-decoration: underline;
  word-break: break-all;
  font-size: 13px;
  transition: opacity 0.2s ease;
}

.privacy__link-list a:hover {
  opacity: 0.7;
}

/* お問い合わせ窓口 */
.privacy__contact {
  background-color: #f3f7fa;
  padding: 24px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy__contact p {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.privacy__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #03407a;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 2px;
  margin-top: 8px;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.privacy__contact-link:hover {
  opacity: 0.75;
}


/* ============================================================
   @media SP（1024px以下）
============================================================ */
@media (max-width: 1024px) {

  #page-header {
    height: 160px;
  }

  .page-header__inner {
    padding: 0 20px;
    margin-top: 40px;
  }

  .page-header__title {
    font-size: 28px;
  }

  .page-header__sub-text {
    font-size: 16px;
  }

  .page-header__sub-line {
    width: 80px;
  }

  .page-header__logo {
    display: none;
  }

  .privacy-section {
    padding: 40px 20px;
  }

  .privacy__heading {
    font-size: 17px;
    gap: 12px;
  }

  .privacy__num {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .privacy__link-block {
    padding: 12px 16px;
  }

  .privacy__contact {
    padding: 20px 16px;
  }

} /* end @media 1024px */