/* ---------------------------------------
   全体背景
--------------------------------------- */
body {
  background: #f2f2f2;
  margin: 0;
  font-family: sans-serif;
}

/* ---------------------------------------
   中央配置（上下左右 ど真ん中）
--------------------------------------- */
.center-area {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* ---------------------------------------
   白ボックス（wrapper）
--------------------------------------- */
.wrapper {
  background: #fff;
  max-width: 700px;
  width: 100%;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  box-sizing: border-box;
}

/* ---------------------------------------
   ロゴ配置
--------------------------------------- */
.logo-area {
  margin-bottom: 20px;
}

.logo {
  max-width: 280px; /* ロゴの最大幅 */
  width: 100%;
  height: auto;
}

/* ---------------------------------------
   ボタン2つ
--------------------------------------- */
.btn-wrap {
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  gap: 15px;
  width: 100%;
  margin-top: 30px;
  box-sizing: border-box;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  box-sizing: border-box;
}

/* 左ボタン（人材紹介）背景色 */
.btn-left {
  background: #7992c3;
}

/* 右ボタン（人材派遣）背景色 */
.btn-right {
  background: #f2a2bd;
}

.link-btn:hover {
  opacity: 0.85;
}

/* ---------------------------------------
   PC（768px〜）では横並び
--------------------------------------- */
@media (min-width: 768px) {
  .btn-wrap {
    flex-direction: row; /* 横並び */
    justify-content: center;
  }
  .link-btn {
    max-width: 250px;
  }
}
