.chart_lead {
  text-align: center;
  margin-bottom: 40px;
}

.chart_lead small {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
}

.chart_box {
  position: relative;
  border: solid 5px #e1e1e1;
  background: #fff;
  padding: 40px;
  border-radius: 0 40px 0 40px;
  box-shadow: 0 0 30px -5px rgba(0,0,0,0.12);
}

.chart_box .number {
  position: absolute;
  top: -20px;
  left: -20px;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: #5b5b5b;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
}

.chart_box_title {
  position: relative;
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 70px;
}

.chart_box_title:before {
  position: absolute;
  bottom: -33px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #e1e1e1;
  border-radius: 5px;

}

.chart_box_answer {
  display: flex;
  justify-content: center;
}

.chart_box_answer .button {
  border-radius: 30px;
  background: #357fef;
  font-size: 17px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  min-width: 200px;
  margin: 0 15px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.chart_box_answer .button:hover {
  background: #001e62;
}

.chart_box_answer .button.no {
  background: #ef3565;
}

.chart_box_answer .button.no:hover {
  background: #a1022b;
}

.chart_box_answer .button.back {
  background: #b2b2b2;
}

.chart_box_answer .button.back:hover {
  background: #5b5b5b;
}

.chart_box_answer-large {
  flex-direction: column;
}

.chart_box_answer-large .button {
  margin-bottom: 20px;
}

.chart_box_answer-large .button:last-of-type {
  margin-bottom: 0;
}

.chart_box_answer_caution {
  margin-top: 40px;
  font-size: 13px;
}

.chart_box_answer_caution dl dt {
  font-weight: bold;
}

.chart_box_answer_caution dl dd {
  margin-bottom: 20px;
}

.chart_box_answer_caution dl dd:last-of-type {
  margin-bottom: 0;
}

.chart_box_goal {
  border: solid 5px #ffdcb2;
}

.chart_box_goal .number {
  background: #ff8c00;
}

.goal {
  margin-bottom: 40px;
}

.goal p {
  margin-bottom: 20px;
  font-size: 17px;
}

.goal p.small {
  font-size: 14px;
}

.goal dl {
  padding: 20px;
  font-size: 14px;
  background: #f1f1f1;
  border-radius: 5px;
}

.goal dl dt {
  font-weight: bold;
}

.goal dl dd {
  padding-left: 1em;
}

.goal_button {
  text-align: center;
}

.goal_button .button {
  position: relative;
  display: inline-block;
  border-radius: 30px;
  background: #357fef;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 50%;
  margin: 0;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.3s;
}

.goal_button .button:hover {
  opacity: 0.7;
}

.goal_button .button:before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}

.goal_button .button-pink {
background: #ef35ab;
}

.goal_button .button-pink:hover {
background: #620055;
}

.goal_button .button-green {
background: #75be14;
}

.goal_button .button-green:hover {
background: #295a29;
}

.goal_button .button-orange {
background: #ff8c00;
}

.goal_button .button-orange:hover {
background: #9b5d12;
}

.goal .has-marginbottom {
  margin-bottom: 40px;
}

.chart_box_question_list {
  margin-bottom: 40px;
}

.chart_box_question_list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 20px;
}

.chart_box_question_list li:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #5b5b5b;
  border-radius: 50%;
}

.chart_box_question_list li:last-of-type {
  margin-bottom: 0;
}

[data-view] {
  display: none;
}

[data-view='1'] {
  display: block;
}


.goal_cnt {
padding: 20px;
font-size: 14px;
background: #f1f1f1;
border-radius: 5px;
}

.goal_cnt_title {
margin-bottom: 20px;
font-weight: bold;
}

.goal_cnt  dl {
padding: 0;
}






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

  .chart_box {
    padding: 20px 15px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0 0 30px -5px rgba(0,0,0,0.12);
  }

  .chart_box .number {
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
  }

  .chart_box_title {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .chart_box_title:before {
    bottom: -23px;
  }

  .chart_box_answer {
    flex-direction: column;
  }

  .chart_box_answer .button {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .chart_box_answer .button:last-of-type {
    margin-bottom: 0;
  }

  .goal {
    margin-bottom: 20px;
  }

  .goal p {
    font-size: 15px;
  }

  .chart_box_answer-large .button {
    line-height: 1.4;
    font-size: 15px;
    border-radius: 5px;
  }

  .goal_button .button {
    width: 100%;
    font-size: 17px;
  }

  .chart_lead small {
    font-size: 11px;
    margin-top: 10px;
  }

}
