@charset "Shift_JIS";
/* CSS Document */
.pc_only {
  display: inline;
}
.sp_only {
  display: none;
}
body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background: #f7f7f7;
  color: #333;
}
.notice {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.notice-box {
  max-width: 720px;
  width: 100%;
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
p {
  margin: 0 0 18px;
  line-height: 1.9;
  font-size: 16px;
}
.note {
  margin-top: 30px;
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 600px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: inline;
  }
  .notice-box {
    padding: 35px 24px;
  }
  p {
    font-size: 15px;
  }
}