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

body {
  background-image: url('img/bg_recruitninsho.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  padding: 48px 20px;
}

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

.mv {
  width: 100%;
  margin-bottom: 32px;
}

.mv img {
  width: 100%;
  display: block;
}

.description {
  text-align: center;
  font-size: 18px;
  color: #555;
  line-height: 2;
  margin-bottom: 28px;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
}

.icon-18 {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-18 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.question {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.buttons {
  display: flex;
  gap: 16px;
}

.btn-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.05em;
}

.btn {
  display: block;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
  cursor: pointer;
  background-color: #fff;
  color: #666;
  border: 1px solid #C0C0C0;
  transition: background-color 0.2s, color 0.2s;
}

.btn:hover {
  background-color: #E8529A;
  color: #fff;
  border-color: #E8529A;
}

.sp-br {
  display: none;
}

/* スマホ */
@media (max-width: 600px) {
  .sp-br {
    display: inline;
  }

  body {
    padding: 32px 16px;
    align-items: flex-start;
  }

  .mv {
    margin-bottom: 24px;
  }

  .description {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .question {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .buttons {
    flex-direction: column;
    gap: 0;
  }

  .btn-group {
    width: 100%;
    gap: 8px;
    margin-bottom: 20px;
  }

  .btn-group:last-child {
    margin-bottom: 0;
  }
}
