* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/MaterialIcons-Regular.woff2") format("woff2");
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  word-spacing: 1px;
}

a {
  color: inherit;
}

.page {
  display: flex;
  width: 100%;
  min-height: 100dvh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

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

.site-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 100%;
}

.notice-head {
  display: flex;
  width: 1320px;
  max-width: 100%;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 120px 80px 80px;
  background: transparent;
}

.eyebrow {
  width: auto;
  max-width: 100%;
  margin: 0;
  color: #b6bcc8;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: left;
}

h1 {
  width: auto;
  max-width: 100%;
  margin: 0;
  color: #2086e5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: left;
  word-break: break-word;
}

.notice-body {
  display: flex;
  width: 1320px;
  max-width: 100%;
  height: 480px;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 64px;
  padding: 0 80px 80px;
  background: transparent;
}

.notice-copy {
  width: 100%;
  max-width: 100%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
  word-break: break-word;
}

.notice-copy p {
  min-height: 1em;
  margin: 0;
  line-height: 2.2;
}

.notice-copy a {
  display: inline;
  color: #2086e5;
  text-decoration: underline;
}

.contact-button {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  flex: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 16px 28px 16px 32px;
  border-radius: 8px;
  background: #2086e5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-decoration: none;
}

.contact-button:hover {
  background: #469ef0;
}

.contact-button span {
  display: block;
  padding-bottom: 2px;
}

.material-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Material Icons";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}

@media screen and (max-width: 1140px) {
  .site-logo {
    width: 100px;
    height: 36px;
  }
}

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

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

  .notice-body {
    height: 480px;
    padding: 0 24px 80px;
  }

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

  .contact-button {
    padding: 12px 40px;
    font-size: 14px;
  }

  .material-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 16px;
  }
}
