@charset "UTF-8";

/* =========================================
   results: customer-success セクション
   ========================================= */

/* 2ボタン横並び（SPは縦積み） */
.customer-success .button-wrapper-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .customer-success .button-wrapper-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* ボタン本体 */
.customer-success .component-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  font-family: "SST W55 Bold", "SSTJpPro-Bold", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  border-radius: 999px;
  background-color: var(--main);
  border: 1px solid var(--main);
  text-decoration: none;
  width: 100%;
  max-width: 295px;
  transition: background-color .2s, color .2s;
}

@media screen and (min-width: 769px) {
  .customer-success .component-button {
    padding: 15px 22px;
    max-width: 300px;
  }
}

/* 矢印 */
.customer-success .component-button::after {
  content: "";
  width: 14px;
  height: 12px;
  flex-shrink: 0;
  background: url("/resources/results/assets/ico_arrow_w.svg") no-repeat center/contain;
}

/* ホバー */
.customer-success .component-button:hover {
  background-color: var(--white);
  color: var(--main);
}

.customer-success .component-button:hover::after {
  background-image: url("/resources/results/assets/ico_arrow_g.svg");
}