@charset "utf-8";

/* ============================================================
   privacy.css — プライバシーポリシーページ専用スタイル
   entry.css のデザインシステムに準拠
============================================================ */

/* ============================================================
   ※ カラー変数・.page-header 共通スタイルは style.css で定義済み
============================================================ */


/* ===========================
   本文エリア全体ラッパー
=========================== */
.privacy-body {
  background: #fff;
  padding: 0 40px 10px;
}

.privacy-body__inner {
  max-width: 800px;
  margin: 0 auto;
}


/* ===========================
   リード文
=========================== */
.privacy-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.90rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 56px;
  padding: 28px 32px;
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 8px 8px 0;
}


/* ===========================
   各条文ブロック
=========================== */
.privacy-section {
  border-bottom: 1px solid #eaeaea;
}

.privacy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 64px;
}

.privacy-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 0 16px;
}

.privacy-section__num {
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--green-mid);
  border-radius: 4px;
  padding: 5px 10px;
  text-transform: uppercase;
  line-height: 1;
}

.privacy-section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.privacy-section__body {
  padding: 0 0 32px 0;
}

.privacy-section__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
}

.privacy-section__text + .privacy-sub-list {
  margin-top: 14px;
}


/* ===========================
   箇条書き（sub-list）
=========================== */
.privacy-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-sub-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 12px 18px;
  background: var(--green-pale);
  border-radius: 8px;
}

.privacy-sub-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* 補足テキスト（第三者提供の説明など） */
.privacy-sub-list .sub-note {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ===========================
   お問い合わせ CTAバナー
   （entry-contact__inner と同系デザイン）
=========================== */
.privacy-contact {
  background: linear-gradient(135deg, var(--green-mid) 0%, #187780 100%);
  border-radius: 20px;
  padding: 44px 52px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
  margin-top: 50px;
}

.privacy-contact::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.privacy-contact::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.privacy-contact__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.privacy-contact__org {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.0rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.privacy-contact__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.privacy-contact__info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.privacy-contact__info-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.privacy-contact__info-list li strong {
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  display: inline-block;
  width: 4em;
}

.privacy-contact__info-list li a {
  color: rgba(255,255,255,0.80);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.privacy-contact__info-list li a:hover {
  color: #ffffff;
}

.privacy-contact__hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}


/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 768px) {

  /* 本文 */
  .privacy-body {
    padding: 60px 16px 10px;
  }

  .privacy-lead {
    font-size: 0.84rem;
    padding: 20px 20px;
    margin-bottom: 40px;
  }

  .privacy-section__header {
    padding: 24px 0 12px;
    gap: 10px;
  }

  .privacy-section__body {
    padding-bottom: 24px;
  }

  /* CTA */
  .privacy-contact {
    padding: 32px 24px;
    margin-bottom: 70px;
  }

  .privacy-contact__info-list li strong {
    width: auto;
    margin-right: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .privacy-body {
    padding: 70px 32px 0;
  }

  .privacy-contact {
    padding: 44px 44px;
  }
}