/* ====== 2026/6/17追加 CTA ====== */
.p-selection-support {
  max-width: 1080px;
  margin: 64px auto;
  padding: 48px 32px;
  background: linear-gradient(0deg, #f3f9ff 0%, #ffffff 100%);
  border: 2px solid #d7eaf8;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 82, 150, 0.08);
}

.p-selection-support__lead {
  margin: 0 0 28px;
  color: #004b8d;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-left: 10px;
}

.p-selection-comment {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_addition {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sentei,
.voice {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 64px;
  padding: 16px 52px 16px 32px;
  border-radius: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* 右矢印 */
.sentei::after,
.voice::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* メインボタン */
.sentei {
  color: #ffffff;
  background-color: #ff7f00;
  border-bottom: #ce5600 4px solid;
}

/* サブボタン */
.voice {
  color: #fff;
  background: #0d9b5b;
  border-bottom: #0a693e 4px solid;
}

.sentei:hover,
.voice:hover {
  transform: translateY(2px);
  box-shadow: 0 10px 22px rgba(120, 120, 120, 0.317);
  opacity: 0.9;
}

.sentei:focus-visible,
.voice:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}



/* ====== CTA レスポンシブ対応 ====== */

/* タブレット以下 */
@media screen and (max-width: 1024px) {
  .p-selection-support {
    margin: 56px 24px;
    padding: 40px 28px;
  }

  .sentei,
  .voice {
    min-width: 280px;
    font-size: 22px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .p-selection-support {
    margin: 40px 16px;
    padding: 32px 20px;
    border-radius: 18px;
  }

  .p-selection-comment {
    flex-direction: column;
    gap: 8px;
  }

  .p-selection-comment img {
    width: 88px;
    height: auto;
  }

  .p-selection-support__lead {
    margin: 0 0 24px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .btn_addition {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .sentei,
  .voice {
    width: 100%;
    min-width: auto;
    min-height: 56px;
    padding: 14px 44px 14px 20px;
    font-size: 18px;
    line-height: 1.5;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .sentei::after,
  .voice::after {
    right: 20px;
    width: 9px;
    height: 9px;
  }
}


