@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 500px;
}

.card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 8px 8px 0 #000;
}

.disclaimer {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

.qualification {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.qualification.animate {
  animation: pop 0.5s ease;
}

.details {
  margin-bottom: 30px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.detail-item {
  margin-bottom: 12px;
  line-height: 1.6;
}

.label {
  font-weight: 700;
  display: inline-block;
  min-width: 140px;
}

.value {
  color: #333;
}

@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

button {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .card {
    padding: 40px 30px;
  }
  
  .qualification {
    font-size: 36px;
  }
  
  button {
    font-size: 16px;
    padding: 14px 32px;
  }
}