@charset "UTF-8";
#simulation_block {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif", serif;
  max-width: 950px;
  margin: 60px auto 95px;
}
#simulation_block img {
  width: 100%;
}
#simulation_block .simulation_item {
  display: flex;
  justify-content: space-between;
}
#simulation_block .result_box {
  margin-top: 25px;
  height: 150px;
  border: 6px solid #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 10px;
}
#simulation_block .result_box p {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
}
#simulation_block .result_box p span {
  line-height: 1;
}
#simulation_block .result_box p .price {
  font-size: 4.5rem;
  margin-top: 8px !important;
  display: inline-block;
}
#simulation_block .result_box p .yen {
  font-size: 2.25rem;
}

.simulation_ttl {
  background-color: #00a9d6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 23px;
}
.simulation_ttl .img {
  width: 318px;
  margin-right: 22px;
}
.simulation_ttl .txt {
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  padding-top: .4em;
}
.simulation_ttl + .read {
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.select_block {
  border-radius: 12px;
  padding: calc(30 / 950 * 100%) 0 23px;
  /*max-width: 290px;*/
  width: 30.53%;
  position: relative;
}
.select_block::before {
  position: absolute;
  content: "";
  width: 22%;
  height: 22%;
  background: url("../img/cbcp_icon.png") no-repeat top left/contain;
  right: calc(-53 / 290 * 100%);
  top: 90px;
  z-index: 1;
}
.select_block:last-child::before {
  content: none;
}
.select_block .ttl_block {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
}
.select_block .ttl_block .img {
  margin: 0 auto 14px;
  min-height: 128px;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  width: 100%;
  padding: 0 8px;
}
.select_block .title {
  font-weight: bold;
  text-align: center;
  font-size: 1.3125rem;
  margin-bottom: 18px;
  padding: 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select_block .select_list {
  border: 4px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 10.3%;
  /*padding: 4% 11% 3%;*/
  padding: 4% 0 3%;
}
.select_block .select_list + .select_list {
  margin-top: 18px;
}
.select_block .select_list p {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
.select_block .select_list ul {
  padding: 0 calc(30 / 290 * 100%);
}
.select_block .select_list ul li {
  margin-bottom: 6px;
}
.select_block .select_list ul li:last-child {
  margin-bottom: 0;
}
.select_block .select_list ul li label {
  cursor: pointer;
  display: flex;
}
.select_block .select_list ul li input[type="radio"] {
  display: none;
}
.select_block .select_list ul li input {
  appearance: none;
  position: absolute;
}
.select_block .select_list ul li input:checked + .radio_text::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #000000;
}
.select_block .select_list ul li .radio_text {
  position: relative;
  display: flex;
  /*align-items: center;*/
  font-weight: bold;
  padding-left: 26px;
}
.select_block .select_list ul li .radio_text::before, .select_block .select_list ul li .radio_text::after {
  content: '';
  display: block;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}
.select_block .select_list ul li .radio_text::before {
  border: 2px solid #000000;
  width: 20px;
  height: 20px;
  background-color: #fff;
  left: 0;
}
.select_block .select_list.no_choice {
  background-color: rgba(0, 0, 0, 0.2);
}

.bravia_select {
  background-color: #ededed;
}
.bravia_select .ttl_block .img {
  max-width: 240px;
}

.recorder_select {
  background-color: #dff2fc;
}
.recorder_select .ttl_block .img {
  max-width: 215px;
  padding-bottom: 10px;
}

.soundbar_select {
  background-color: #fbe2ed;
}
.soundbar_select .ttl_block .img {
  max-width: 230px;
  padding-bottom: 10px;
}

@media (max-width: 640px) {
  #simulation_block {
    margin: 40px auto 30px;
  }
  #simulation_block .simulation_item {
    display: block;
  }
  #simulation_block .result_box {
    margin-top: 20px;
    height: 120px;
    border: 3px solid #ff0000;
    border-radius: 6px;
  }
  #simulation_block .result_box p {
    font-size: 1rem;
  }
  #simulation_block .result_box p .price {
    font-size: 3.4285714285714rem;
    margin-top: 4px !important;
  }
  #simulation_block .result_box p .yen {
    font-size: 1.7142857142857rem;
  }

  .simulation_ttl {
    display: block;
    border-radius: 6px;
    padding: 7px 5px 0;
    margin-bottom: 12px;
  }
  .simulation_ttl .img {
    width: calc(248 / 690 * 100%);
    margin: 0 auto 5px;
  }
  .simulation_ttl .txt {
    font-size: 1.3rem;
    padding-top: 0;
    text-align: center;
  }
  .simulation_ttl + .read {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .select_block {
    width: 100%;
    padding: calc(30 / 685 * 100%) 0 23px;
  }
  .select_block + .select_block {
    margin-top: calc(69 / 750 * 100%);
  }
  .select_block::before {
    width: calc(127 / 750 * 100vw);
    height: calc(127 / 750 * 100vw);
    background: url("../img/cbcp_icon.png") no-repeat top left/contain;
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: calc(-78 / 685 * 100vw);
  }
  .select_block .ttl_block {
    flex-direction: initial;
    margin: 0 calc(15 / 685 * 100vw);
    min-height: 60px;
    align-items: center;
  }
  .select_block .ttl_block .img {
    width: 40%;
    margin: 0;
    min-height: 100%;
    margin-right: 1.5%;
  }
  .select_block .title {
    font-size: 1.0714285714286rem;
    margin-bottom: 0;
    width: 50%;
    text-align: left;
    display: block;
  }
  .select_block .select_list {
    border: 2px solid #fff;
    margin: 0 calc(15 / 685 * 100%);
    padding: 3% 0 2.5%;
  }
  .select_block .select_list p {
    font-size: 1.1rem;
  }
  .select_block .select_list + .select_list {
    margin-top: 10px;
  }
  .select_block .select_list ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 calc(22 / 685 * 100%);
  }
  .select_block .select_list ul li {
    width: 50%;
  }
  .select_block .select_list ul li:nth-last-child(-n+2) {
    margin: 0;
  }
  .select_block .select_list ul li input:checked + .radio_text::after {
    top: 8px;
    width: 7px;
    height: 7px;
  }
  .select_block .select_list ul li .radio_text::before {
    width: 17px;
    height: 17px;
    margin-top: 3px;
  }

  .bravia_select .ttl_block .img {
    max-width: 40%;
    margin-left: 0;
  }

  .recorder_select .ttl_block .img {
    max-width: 40%;
    padding-bottom: 0;
  }

  .soundbar_select .ttl_block .img {
    max-width: 40%;
    padding-bottom: 0;
  }
}
