/* =======================
   ご利用にあたってのお願い
   ======================= */

*,
*::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;
}

/* 共通レイアウト */
.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
/* ヘッダー／メニューは常に最前面に出す */
.site-header {
  position: relative;
  z-index: 500;   /* page-content やカードより大きく */
}

.section__inner {
  max-width: 480px;
  margin: 0 auto;
}

/* PC のときは横幅を広げる */
@media (min-width: 768px) {
  .main,
  .section__inner {
    max-width: 960px;
  }
}
.page-content {
  position: relative;
  z-index: 10;
}
.section-notice {
  margin-top: 40px;
}

.notice-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #145087;
  margin: 0 0 20px;
  text-align: center;
}

/* 白いカード全体 */
.notice-card {
  position: relative;
  z-index: 20;               /* 背景より前 */
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 16px 26px;
  border: 1px solid #e2f1ff;
  box-shadow: 0 4px 12px rgba(13, 71, 125, 0.08);
}

/* 各ブロック */
.notice-block {
  margin-bottom: 20px;
}

.notice-block--last {
  margin-bottom: 0;
}

.notice-block__title {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #145087;
  margin: 0 0 10px;
}

.notice-block__text {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
  margin: 0 0 10px;
}

/* 箇条書き */
.notice-list {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}

.notice-list li {
  font-size: 12px;
  line-height: 1.8;
  color: #34536f;
}

/* 関連リンク（下に並ぶリンク） */
.notice-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.notice-link {
  font-size: 12px;
  color: #1c63d2;
  text-decoration: none;
  position: relative;
  padding-right: 12px;
}

.notice-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
}
.site-footer {
  position: relative;
  z-index: 30;
}


/* PC向けレイアウト */
@media (min-width: 768px) {
  .section-notice {
    margin-top: 56px;
  }

  .notice-title {
    font-size: 22px;
  }

  .notice-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 26px 32px 32px;
  }
}
