@charset "UTF-8";
/* ==================================================
 * Color set
 * ================================================== */
/* ==================================================
 * Font
 * ================================================== */
/* ==================================================
 * width
 * ================================================== */
/* ==================================================
 * layout
 * ================================================== */
/* ==================================================
 * bg
 * ================================================== */
/* ==================================================
 * font text
 * ================================================== */
/* ==================================================
 * other
 * ================================================== */
/*基本設定
=========================================*/
.chart_container {
  position: relative;
  width: 100%;
}

.show {
  width: 100%;
}

/*=========================================================
	診断チャート
=========================================================*/
/*診断コンテンツ
----------------------------------------------- */
.chart_container,
.com_chart {
  position: relative;
  border: solid 5px;
  border-radius: 30px;
}

.chart_container {
  background-image: radial-gradient(#dddddd 12%, transparent 12%);
  background-position: 8px 8px;
  background-size: 16px 16px;
  background-color: #faf8f0;
  border-color: #0082ac;
}

.com_chart {
  border-color: #fff;
}
.com_chart-bx {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

/*診断タイトル*/
.chart_title,
.result_title {
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 30px;
  text-align: center;
  background: #58bfeb;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .chart_title,
  .result_title {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .chart_title,
  .result_title {
    font-size: 22.6666666667px;
  }
}

.chart_title {
  position: relative;
}
.chart_title::before {
  font-family: "Zen Kaku Gothic New", system-ui;
  content: "Q";
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 6px 0;
  background: #fff;
  color: #0082ac;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0, -50%);
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .chart_title::before {
    font-size: 50px;
    font-size: 6.5104166667vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .chart_title::before {
    font-size: 33.3333333333px;
  }
}

/*診断ボタン
----------------------------------------------- */
/*回答リスト*/
/*回答ボタン*/
.chart_btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}
.chart_btn_list-item {
  width: 450px;
  max-width: 100%;
}
.chart_btn_list-item a {
  position: relative;
  z-index: 1;
  display: block;
  background: #fff;
  border: solid 2px #0082ac;
  box-shadow: 4px 4px #58bfeb;
  border-radius: 50rem;
  color: #0082ac;
  text-align: center;
  padding: 25px 60px 25px 25px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .chart_btn_list-item a {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .chart_btn_list-item a {
    font-size: 18.6666666667px;
  }
}
.chart_btn_list-item a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  transition: 0.3s;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/arrow-circle-blu.png");
  background-size: 100%;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.chart_btn_list-item a:hover {
  color: rgba(0, 130, 172, 0.8);
  box-shadow: 0 0 #58bfeb;
  transform: translate(1px, 1px);
}
.chart_btn_list-item a:hover::after {
  transform: translate(-2px, -50%);
}

/*戻るボタン*/
.back_btn {
  font-family: "Zen Kaku Gothic New", system-ui;
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .back_btn {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .back_btn {
    font-size: 20px;
  }
}
.back_btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  border-bottom: solid 2px #402f1d;
  padding-bottom: 5px;
}
.back_btn span::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 22/19;
  background-image: url("/img/common/arrow-back.png");
  background-size: 100%;
}
.back_btn:hover {
  opacity: 0.8;
}

/*診断結果
----------------------------------------------- */
.result_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 12px;
}
.result_title-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(60px, -40px);
  width: 120px;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff9b2f;
  color: #fff;
  line-height: 1.1875;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .result_title-icon {
    font-size: 42px;
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .result_title-icon {
    font-size: 28px;
  }
}
.result_title .sub {
  border-bottom: solid 2px #fff;
  padding-bottom: 5px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .result_title .sub {
    font-size: 28px;
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .result_title .sub {
    font-size: 18.6666666667px;
  }
}
.result_title .main {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .result_title .main {
    font-size: 40px;
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  .result_title .main {
    font-size: 26.6666666667px;
  }
}

.result_chart .img {
  width: 350px;
  max-width: 100%;
  aspect-ratio: 350/230;
  border-radius: 20px;
  overflow: hidden;
}
.result_chart .txtbx {
  width: 560px;
  max-width: 100%;
}/*# sourceMappingURL=chart_pc.css.map */