@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 {
  margin-top: 50px;
  box-shadow: 0 8px #c2eaf9;
  padding: 50px;
  position: relative;
  z-index: 1;
}
#chart::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: solid 2px #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*診断コンテンツ
----------------------------------------------- */
/*診断タイトル*/
.chart_title {
  margin-bottom: 40px;
  background: #fff;
  padding: 8px 20px;
  border-radius: 50rem;
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .chart_title {
    font-size: 35px;
    font-size: 4.5572916667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .chart_title {
    font-size: 20.5882352941px;
  }
}

/*診断ボタン
----------------------------------------------- */
/*回答リスト*/
.chart_btn_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
  font-weight: 600;
  font-size: 21px;
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .chart_btn_list {
    font-size: 31px;
    font-size: 4.0364583333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .chart_btn_list {
    font-size: 18.2352941176px;
  }
}
.chart_btn_list-item {
  border-radius: 10px;
}
.chart_btn_list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 40px 10px 20px;
  border-radius: 10px;
  color: #fff;
  background: #0aa4e4;
  box-shadow: 0 6px #37bdf5;
}
.chart_btn_list-item a:hover {
  box-shadow: 0 0 #0aa4e4;
  transform: translateY(4px);
}
.chart_btn_list-item:first-child a {
  background: #37bdf5;
  box-shadow: 0 6px #0aa4e4;
}
.chart_btn_list-item:first-child a:hover {
  box-shadow: 0 0 #0aa4e4;
  transform: translateY(4px);
}
.chart_btn_list-item:nth-child(2) a {
  background: #0aa4e4;
  box-shadow: 0 6px #297cbd;
}
.chart_btn_list-item:nth-child(2) a:hover {
  box-shadow: 0 0 #297cbd;
  transform: translateY(4px);
}
.chart_btn_list-item:nth-child(3) a {
  background: #297cbd;
  box-shadow: 0 6px #0b6ab4;
}
.chart_btn_list-item:nth-child(3) a:hover {
  box-shadow: 0 0 #0b6ab4;
  transform: translateY(4px);
}

/*戻るボタン*/
.btn_wrp {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

.back_btn {
  border-top: solid 1px #297cbd;
  border-bottom: solid 1px #297cbd;
  padding: 10px 0;
  color: #297cbd;
  font-size: 21px;
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .back_btn {
    font-size: 31px;
    font-size: 4.0364583333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .back_btn {
    font-size: 18.2352941176px;
  }
}
.back_btn:hover {
  color: rgba(41, 124, 189, 0.8);
}

/*診断結果
----------------------------------------------- */
.result_chart {
  position: relative;
}
.result_chart .ttl-comment__blu2 {
  transform: translate(-50%, -50%);
}
.result_title-icon {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.result_title .main {
  padding: 10px 20px;
}

.result_img {
  width: 470px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 4vw;
}
.result_txtbx {
  width: 470px;
  max-width: 100%;
}
.result_txt {
  white-space: pre-wrap;
}/*# sourceMappingURL=chart_pc.css.map */