@charset "UTF-8";
/*基本設定
=========================================*/
.chart_container {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  /*戻るボタン*/
}
.chart_container .btn_wrp {
  margin-top: 50px;
}
.chart_container .btn_wrp a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.chart_container .btn_wrp a::before {
  content: "";
  display: block;
  width: 80px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/arrow-circle.png");
  background-size: 100%;
  transform: scaleX(-1);
  transition: 0.3s;
}
.chart_container .btn_wrp a:hover {
  color: rgba(73, 75, 77, 0.8);
}
.chart_container .btn_wrp a:hover::before {
  transform: translateX(2px) scaleX(-1);
}
.chart_container .btn-01__link {
  width: 100%;
  height: 60px;
}

.chart_btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/*=========================================================
	診断チャート
=========================================================*/
/*診断コンテンツ
----------------------------------------------- */
/*診断タイトル*/
.chart_title, .result_title {
  background: #f7f7f7;
  padding: 15px 4%;
  text-align: center;
  margin-bottom: 30px;
}

/*診断ボタン
----------------------------------------------- */
/*回答リスト*/
.chart_btn_list-item {
  width: 280px;
  max-width: 100%;
}

/*診断結果
----------------------------------------------- */
.result_container {
  justify-content: space-between;
}
.result_txtxbx {
  width: 515px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.result_txtxbx .price_bx {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .result_txtxbx .price_bx {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .result_txtxbx .price_bx {
    font-size: 16.4705882353px;
  }
}
.result_txt {
  border-bottom: solid 1px #c3c8ce;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.result_txt h4 {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .result_txt h4 {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .result_txt h4 {
    font-size: 17.6470588235px;
  }
}
.result_btn-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.result_btn-list-item {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}/*# sourceMappingURL=chart_pc.css.map */