/* =======================
   ご利用にあたってのお願い page 共通レイアウト
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #145087;
}

/* 背景より前に出す */
.page-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

/* 共通レイアウト（SPメイン） */
.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* ヘッダーは最前面 */
.site-header {
  position: relative;
  z-index: 500;
}


/* =======================
   ご利用にあたってのお願い 本文
   ======================= */

.section-notice {
  margin-top: 40px;
}

.notice-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #145087;
  margin: 0 0 24px;
  text-align: center;
  font-weight: 700;
}

/* 白カード（privacy と統一） */
.notice-card {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 18px 32px;
  border: 1px solid #dfeeff;
  box-shadow: 0 3px 12px rgba(13, 71, 125, 0.08);
}

/* セクション */
.notice-block {
  margin-bottom: 28px;
}

.notice-block--last {
  margin-bottom: 0;
}

/* セクションタイトル：淡い黄色マーカー */
.notice-block__title {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #145087;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 2px;
}

.notice-block__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 0.35em;
  background: rgba(255, 228, 140, 0.45); /* 淡い黄色（privacyと同じ） */
  border-radius: 4px;
  z-index: -1;
}

/* テキスト */
.notice-block__text {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin-bottom: 12px;
}

/* 箇条書き（privacy と同じ青丸） */
.notice-list {
  margin: 0 0 6px;
  padding-left: 0;
  list-style: none;
}

.notice-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #97c7ff; /* 淡い青（privacyと同じ） */
}

/* 強調用（必要なら使う） */
.notice-block__text strong,
.notice-list li strong {
  font-weight: 700;
  color: #144a7a;
}

/* 関連リンクエリア */
.notice-links {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-link {
  color: #145087;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notice-link:hover {
  opacity: 0.85;
}

/* PC向け微調整 */
@media (min-width: 768px) {
  .section-notice {
    margin-top: 60px;
  }

  .notice-title {
    font-size: 22px;
  }

  .notice-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 36px 40px;
  }

  .notice-block {
    margin-bottom: 32px;
  }

  .notice-block__text,
  .notice-list li {
    font-size: 13px;
  }
}
