:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-muted: #555555;
  --color-accent: #ff2a00;
  --color-link: #3a9bff;
  --container-width: 1000px;
  --font-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  word-break: break-all;
}
a:hover {
  text-decoration: underline;
}

.notice-page {
  padding: 48px 24px 72px;
}

.notice-container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.notice-header {
  text-align: center;
  margin-bottom: 64px;
}

.notice-label {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
}

.notice-title {
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.35;
}

.notice-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}

.notice-image {
  width: min(100%, 641px);
}

.notice-body {
  width: min(100%, 990px);
  margin: 0 auto;
  font-size: 1.5rem;
}
.notice-body p {
  margin: 0 0 28px;
}
.notice-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  .notice-page {
    padding: 32px 16px 56px;
  }
  .notice-header {
    margin-bottom: 40px;
  }
  .notice-hero {
    margin-bottom: 40px;
  }
  .notice-body {
    font-size: 1.6rem;
    line-height: 1.9;
  }
  .notice-body p {
    margin-bottom: 22px;
  }
}
/*# sourceMappingURL=style.css.map */