@charset "UTF-8";
/*基本設定
=========================================*/
.chart_container {
  position: relative;
  width: 100%;
}

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

.show {
  width: 100%;
}

.btn {
  position: relative;
  transition: 0.1s all ease-in-out;
}

/*=========================================================
	診断チャート
=========================================================*/
#chart {
  padding: 85px 0;
}

/*診断コンテンツ
----------------------------------------------- */

/*診断タイトル*/
.chart_title {
  margin-bottom: 55px;
}

/*診断ボタン
----------------------------------------------- */
/*回答リスト*/
.chart_btn_list-item {
  width: 300px;
  background: #ccc;
  border-radius: 10px;
}

/*回答ボタン*/
.answer_btn {
  border-radius: 10px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: #f2f2f2;
  position: relative;
  min-height: 110px;
  line-height: 1.5;
  top: -8px;
}
.answer_btn:hover {
  top: 0;
  box-sizing: border-box;
  background: #ccc;
  color: #fff;
}

/*戻るボタン*/
.btn_wrp {
  text-align: center;
  margin-top: 55px;
}

.more_btn {
  width: auto;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  min-width: 280px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 18px;
  border: solid 1px #ccc;
  position: relative;
}
.more_btn:hover {
  background: rgba(204, 204, 204, 0.1);
}
.more_btn:hover:before {
  background: #ccc;
}
.more_btn:hover span {
  color: #ccc;
}
.more_btn span {
  color: #ccc;
}

.line_icon:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background: #ccc;
}

.wht_line:before {
  background: #fff;
}

.gold_btn {
  background: #ccc;
  border: solid 1px #ccc;
}
.gold_btn span {
  color: #fff;
}

.red_btn {
  background: #e70017;
  border: solid 1px #e70017;
}
.red_btn span {
  color: #fff;
}
.red_btn:hover {
  background: rgba(231, 0, 23, 0.1);
}
.red_btn:hover:before {
  background: #e70017;
}
.red_btn:hover span {
  color: #e70017;
}

/*診断結果
----------------------------------------------- */
.result_chart {
  box-sizing: border-box;
}

.result_title {
  font-weight: 700;
  position: relative;
  margin-bottom: 45px;
}
.result_title .result_title-icon {
  width: 130px;
  height: 130px;
  background-color: #000;
  color: #fff;
  font-size: 35px;
  line-height: 1;
  position: absolute;
  left: 40px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result_title .sub {
  display: block;
  width: 400px;
  clear: both;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 20px;
  padding: 15px;
  box-sizing: border-box;
  font-weight: 600;
  color: #fff;
  background: #ccc;
  position: relative;
}
.result_title .sub:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  border: solid 18px transparent;
  border-top: solid 18px #ccc;
  margin-left: -18px;
}
.result_title .main {
  display: block;
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  letter-spacing: 0.5rem;
}

.result_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.result_container .result_img,
.result_container .result_txtxbx {
  width: 510px;
}
.result_container .result_txt {
  margin-bottom: 30px;
}
.result_container .price_bx {
  text-align: right;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.result_container .price_bx dt,
.result_container .price_bx dd {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.result_container .price_bx dt {
  color: #ccc;
  margin-right: 30px;
}
.result_container .price_bx dd {
  color: #000;
}

.result_btn-list {
  text-align: center;
}
.result_btn-list li {
  margin-bottom: 15px;
}
.result_btn-list li:last-of-type {
  margin-bottom: 0;
}
.result_btn-list li .more_btn {
  font-size: 16px;
}