@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 600;
  src: url("font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 800;
  src: url("font/NotoSansJP-Black.woff") format("woff");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #ef4b4d;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid #f0e6e6;
}

.site-header .logo {
  display: block;
  width: calc(180px * 206 / 350);
  overflow: hidden;
}

.site-header .logo img {
  display: block;
  width: 180px;
  max-width: none;
  height: auto;
}

.site-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: #faebfc;
  text-align: center;
}

.closed-card {
  max-width: 640px;
}

.closed-badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #ef4b4d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.closed-card h1 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
}

.closed-card p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.closed-card p:last-child {
  margin-bottom: 0;
}

.closed-actions {
  margin-top: 32px;
}

.closed-actions a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  background: #ef4b4d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.closed-actions a:hover,
.closed-actions a:focus {
  background: #d63e40;
  color: #fff;
}

.site-footer {
  padding: 16px 24px 24px;
  background: #ef4b4d;
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #fff;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .site-header .logo {
    width: calc(150px * 206 / 350);
  }

  .site-header .logo img {
    width: 150px;
  }

  .closed-card h1 {
    font-size: 22px;
  }

  .closed-card p {
    font-size: 15px;
  }

  .site-main {
    padding: 48px 20px;
  }
}
