:root{
  --blue:#2d478b;
  --yellow: #ffd71e;
  --pink: #ff6e6e;
  --green-rgb: 183,185,64;
  --yellow-rgb: 255,215,30;
}
.blcMain > .wrapper.simulator {
  display: block;
}
/*blcBreadcrumbs*/
.blcBreadcrumbs {
  display: flex;
  gap: 5px;
  margin: 5px auto;
  max-width: 980px;
  padding: 0 20px;
  font-size: 10px;
  color: var(--blue);
}
.blcBreadcrumbs a {
  color: var(--blue);
}
.blcBreadcrumbs li:after{
  display: inline;
  content: ">";
  margin-left: 5px;
}
.blcBreadcrumbs li:last-child:after{
  display: none;
}
h1{
  margin-top: 60px;
  text-align: center;
}
h1 img{
  width: 100%;
  max-width: 506px;
  height: auto;
}
p.txtLead{
  margin: 30px auto 0;
  width: 100%;
  max-width: 380px;
  font-size: 16px;
}
/*blcQuestion*/
.blcQuestion{
  margin-top: 60px;
  border-radius: 10px 0;
  background-color: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
}
.blcNumber {
  margin: 0 auto 20px;
  border-radius: 0 0 16px 16px;
  padding: 6px;
  text-align: center;
  color: var(--blue);
  width: 88px;
  background-color: rgba(var(--green-rgb),0.3);
}
.blcNumber .current{
  font-weight: 900;
  font-size: 30px;
  line-height: 1em;
}
.blcNumber .total{
  display: inline-block;
  margin-top: 8px;
  border-radius: 20px;
  width: 100%;
  font-weight: bold;
  background-color: #FFF;
}
.blcQuestion{
  position: relative;
}
.blcQuestion dt{
  margin-bottom: 20px;
  padding: 0 7.4%;
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
}
.blcQuestion dd{
  padding: 30px 20px;
  background-color: rgba(var(--green-rgb),0.1);
}
.blcQuestion dd ul{
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
}
.blcQuestion dd li{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  padding: 10px 20px;
  background-color: #FFF;
  min-height: 60px;
  cursor: pointer;
}
.blcQuestion dd li:hover{
  box-shadow: 0px 0px 5px 0px rgba(var(--yellow-rgb),0.35);
  border: 1px solid var(--yellow);
  transition: 1s;
}
.blcQuestion dd li.selected{
  border: 2px solid var(--yellow);
  background-color: rgba(var(--yellow-rgb),0.3);
}
/*btn*/
.btnCircle{
  display: block;
  border: 1px solid var(--blue);
  border-radius: 50%;
  padding-top: 56px;
  width: 100px;
  height: 100px;
  color: var(--blue);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2em;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
}
.btnCircle.prev{
  background: url('../images/simulator/img_arrow_prev.png') no-repeat #FFF center 20px /34px 25px;
  left: -10px;
}
.btnCircle.next{
  background: url('../images/simulator/img_arrow.png') no-repeat var(--yellow) center 20px /34px 25px;
  right: -10px;
}
.btnCircle.next.final{
  background-position: center center;
}
.btnCircle.next.final span{
  display: block;
  border-radius: 5px;
  padding: 10px 0;
  width: 100px;
  background-color: #FFF;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);;
}
.btnCircle.next.final span:after{
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 8px solid #FFF;
  border-bottom: 0;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.btnCircle:hover{
  transform: scale(1.1);
  opacity: 1;
}
/*blcResult*/
.blcResult{
  margin-top: 60px;
  border-radius: 10px 0;
  background-color: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
  position: relative;
}
.resultSubtitle{
  padding: 2px 10px;
  border-radius: 5px;
  background-color: var(--blue);
  font-weight: bold;
  font-size: 20px;
  color: #FFF;
  position: absolute;
  top: -15px;
  left: 7.4%;
}
.resultSubtitle:after{
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 12px solid var(--blue);
  border-bottom: 0;
  position: absolute;
  bottom: -10px;
  right: 50px;
}
.blcResult h2{
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.blcResult h2 > span{
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
  padding: 0 50px;
  font-weight: 800;
  font-size: 40px;
  color: var(--blue);
  position: relative;
}
.blcResult h2 > span:before{
  display: block;
  content: "「";
  position: absolute;
  top: 0;
  left: 0;
}
.blcResult h2 > span:after{
  display: block;
  content: "」";
  position: absolute;
  bottom: 0;
  right: 0;
}
.resultDetail{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 7.4%;
  background-color: rgba(var(--green-rgb),0.1); 
}
.resultDetail img{
  width: 200px;
  height: auto;
}
.resultDetailTxt{
  margin-bottom: 40px;
}
.resultDetailTxt,
.resultDetailTxt p{
  font-size: 17px;
  line-height: 1.8em;
}
.resultDetaiRecommend{
  border: 1px dashed var(--blue) ;
  border-radius: 10px;
  padding: 23px 20px 20px;
  position: relative;
}
.resultDetaiRecommend dt{
  padding: 0 6px;
  background-color: #f8f8ec;
  font-size: 16px;
  font-weight: bold;
  color: var(--blue);
  position: absolute;
  top: -12px;
}
.resultDetaiRecommend dd{
  display: flex;
  justify-content: center;
}
.resultDetaiRecommend ul{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.resultDetaiRecommend li{
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 1px 8px;
  background-color: #FFF;
  font-size: 14px;
  color: var(--blue);
}
/*resultDetailClosing*/
.resultDetailClosing{
  padding: 30px 20px;
}
.resultDetailClosing.r1{
  background: url("../images/simulator/img_close_r1.png") no-repeat right 30px bottom /100px 100px;
}
.resultDetailClosing.r2{
  background: url("../images/simulator/img_close_r2.png") no-repeat right 30px bottom /100px 96px;
}
.resultDetailClosing.r3{
  background: url("../images/simulator/img_close_r3.png") no-repeat right 30px bottom /96px 99px;
}
.resultDetailClosing.r4{
  background: url("../images/simulator/img_close_r4.png") no-repeat right 30px bottom /100px 99px;
}
.resultDetailClosing.r5{
  background: url("../images/simulator/img_close_r5.png") no-repeat right 30px bottom /100px 100px;
}
.resultDetailClosing p{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 21px;
  color: var(--blue);
}
.resultDetailClosing p .emphasis{
  font-size: 25px;
  color: var(--pink);
}
.resultDetailClosing p > span:last-child{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  position: relative;
}
.resultDetailClosing p > span:last-child:before{
  display: block;
  content: "";
  width: 0;
  height: 25px;
  border: 1px solid var(--blue);
  position: absolute;
  bottom: 0;
  left: 10px;
  transform: rotate(-30deg);
}
.resultDetailClosing p > span:last-child:after{
  display: block;
  content: "";
  width: 0;
  height: 25px;
  border: 1px solid var(--blue);
  position: absolute;
  bottom: 0;
  right: 10px;
  transform: rotate(30deg);
}
.btn.yellow.arrow{
  position: relative;
}
.btn.yellow.arrow:before{
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.btn.yellow.arrow:after{
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .blcQuestion .blcBtn{
    padding: 0 20px 40px;
    background-color: rgba(var(--green-rgb), 0.1);
  }
  .blcQuestion .blcBtn ul{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 380px;
  }
  .btnCircle{
    position: static;
  }
  .btnCircle.next.final{
    position: relative;
  }
  .btnCircle.next.final span{
    top: auto;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);;
  }
  .btnCircle.next.final span:after{
    bottom: auto;
    top: -7px;
    transform: translateX(-50%) rotate(180deg);
  }
  .blcResult h2 {
    padding-bottom: 40px;
  }
  .resultDetail{
    display: block;
    padding-top: 120px;
    position: relative;
  }
  .resultDetail img {
    width: 130px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .resultDetailClosing.r1,
  .resultDetailClosing.r2,
  .resultDetailClosing.r3,
  .resultDetailClosing.r4,
  .resultDetailClosing.r5{
    background-image: none;
  }
}
@media screen and (max-width: 400px) {
  .blcResult h2 > span{
    font-size: 10vw;
  }
}