@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  text-rendering: optimizeSpeed;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
  word-break: break-all;
  background: #f6f6f6;
}

a {
  text-decoration: none;
  cursor: pointer;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.header {
  position: relative;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

@media screen and (width <= 786px) {
  .header__container {
    width: 100%;
    min-width: 375px;
  }
}
@media screen and (786px < width < 1136px) {
  .header__container {
    width: 786px;
    margin: 0 auto;
  }
}
@media screen and (1136px <= width) {
  .header__container {
    max-width: 1136px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.header__content {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  height: 44px;
}
@media screen and (1136px <= width) {
  .header__content {
    padding: 0;
  }
}

.header__topLink {
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
  font-size: 10px;
  color: #212121;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (1136px <= width) {
  .header__topLink {
    font-size: 12px;
  }
}

.header__logo {
  width: 48px;
  height: 15px;
}
@media screen and (1136px <= width) {
  .header__logo {
    width: 67px;
    height: 20px;
  }
}

.systemInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 60px 0;
  margin: 0 auto;
}

.systemInfo__image {
  margin-bottom: 12px;
}
@media screen and (1136px <= width) {
  .systemInfo__image {
    margin-bottom: 24px;
  }
}

.systemInfo__text {
  margin-bottom: 12px;
  color: #8c8c8c;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (1136px <= width) {
  .systemInfo__text {
    margin-bottom: 40px;
    font-size: 16px;
  }
}

.systemInfo__button {
  display: grid;
  place-items: center;
  height: 44px;
  width: 216px;
  border: 1px solid #b60081;
  border-radius: 22px;
  background-color: #b60081;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (1136px <= width) {
  .systemInfo__button {
    height: 64px;
    width: 358px;
    border-radius: 32px;
    font-size: 16px;
  }
}