* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2086e5;
}

.page {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

.site-header {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  padding: 40px 0 0 40px;
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
  width: max-content;
}

.brand-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: 160px;
}

.brand-logo-footer {
  width: 120px;
}

.main {
  width: 100%;
}

.notice-heading,
.notice-body {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

.notice-heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 120px 80px 80px;
}

.eyebrow {
  color: #b6bcc8;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.4;
  margin: 0;
}

h1 {
  color: #2086e5;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.notice-body {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 480px;
  padding: 0 80px 80px;
}

.copy {
  display: grid;
  gap: 16px;
  max-width: 789px;
  width: 100%;
}

.copy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
}

.url-box {
  background: #eff2f7;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
}

.url-box p {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1.8;
}

.url-box .spacer {
  height: 14px;
}

.cta {
  align-items: center;
  align-self: flex-start;
  background: #2086e5;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  color: #fff;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  padding: 16px 28px 16px 32px;
  text-decoration: none;
  transition: background .2s ease;
}

.cta:hover {
  background: #469ef0;
}

.cta span:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}

.cta-icon {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  align-items: center;
  background: #000;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 104px;
  padding: 36px 40px;
  width: 100%;
}

@media (max-width: 540px) {
  .site-header {
    padding: 40px 0 0 40px;
  }

  .notice-heading {
    padding: 40px 24px 16px;
  }

  .eyebrow,
  h1 {
    font-size: 24px;
  }

  .notice-body {
    gap: 64px;
    padding: 0 24px 80px;
  }

  .copy p {
    font-size: 14px;
  }

  .url-box p {
    font-size: 14px;
  }

  .cta {
    min-height: 46px;
    padding: 12px 40px;
  }

  .cta span:first-child {
    font-size: 14px;
  }

  .cta-icon {
    font-size: 16px;
  }
}

@media (max-width: 352px) {
  .url-box p,
  .cta span:first-child {
    font-size: 12px;
  }

  .cta {
    padding: 12px 16px;
  }
}
