/* =====================================
   メインコンテンツ
===================================== */

.multi-start {
  padding: 0 24px;
}

.multi-start-inner {
  text-align: center;
}

.multi-start-title {
  margin-bottom: 16px;
}

.multi-start-lead {
  color: #555;
  margin-bottom: 60px;
  line-height: 1.7;
}


/* =====================================
   ボタンエリア（画像ボタン）
===================================== */

.multi-start-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;

  max-width: 900px;
  margin: 0 auto 60px;
}

/* ボタン本体 */
.multi-btn {
  display: block;
  max-width: 420px;
  margin: 0 auto;

  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;

  /* ← 型消しのポイント */
  border: none;
  outline: none;
  background-color: #fff;
  text-decoration: none;
}

/* ホバー時 */
.multi-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* フォーカス時（アクセシビリティ対応） */
.multi-btn:focus {
  box-shadow: 0 14px 40px rgba(0,0,0,0.12), 0 0 0 3px rgba(255,200,0,0.5);
}

/* ボタン画像 */
.multi-btn-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}


/* =====================================
   スマホ版（767px以下）
===================================== */

@media screen and (max-width: 767px) {

  .multi-start-title {
    font-size: 1.6rem;
  }

  .multi-start-lead {
    margin-bottom: 28px;
  }

  /* ボタン縦並び */
  .multi-start-buttons {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 10%;
  }

  .multi-btn {
    max-width: 80%;
    border: none;
    outline: none;
    background-color: #fff;
  }

  .multi-btn-img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 461px) {

  .multi-btn {
    max-width: 100%;
  }
}