@charset "UTF-8";
/* インナー幅、余白調整 */
.yes-no {
  margin: 100px 0;
}

.yes-no_inner {
  max-width: 1300px;
  padding: 0 2rem;
  margin-inline: auto;
}

/* スタイル調整 */
.chart-box {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #18513d;
  padding: 3rem 2rem;
}

.chart-box p {
  position: relative;
}

@media (max-width: 768px) {
  .number {
    /*  768px  */
    font-size: 1.4rem;
  }
}

.number::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: -webkit-gradient(linear, left top, right top, from(#18513d), color-stop(40%, #18513d), color-stop(40%, #b3b3b3), to(#b3b3b3));
  background: linear-gradient(to right, #18513d 0%, #18513d 40%, #b3b3b3 40%, #b3b3b3 100%);
}

.number span {
  display: inline-block;
  margin-right: 1rem;
  font-size: 2rem;
  color: #18513d;
}
@media (max-width: 768px) {
  .number span {
    /*  768px  */
    font-size: 1.6rem;
  }
}

.chart-box a {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .chart-box a {
    /*  768px  */
    font-size: 1.4rem;
  }
}

.result-text {
  padding: 3rem 2rem;
  text-align: center;
  font-weight: 500;
}

.head {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .head {
    /*  768px  */
    font-size: 1.4rem;
  }
}

.name {
  font-size: 3rem;
  color: #18513d;
}
@media (max-width: 768px) {
  .name {
    /*  768px  */
    font-size: 2rem;
  }
}

.head:not(:first-child) {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .head:not(:first-child) {
    /*  768px  */
    margin-top: 3rem;
  }
}

.price {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .price {
    /*  768px  */
    font-size: 2rem;
  }
}

.price span {
  font-size: 1.6rem;
}

.desc {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .desc {
    /*  768px  */
    font-size: 1.4rem;
  }
}

.sagasu-link {
  color: #18513d;
  border-bottom: 1px solid #18513d;
  display: inline-block;
  padding-bottom: 5px;
  margin-top: 3rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sagasu-link {
    /*  768px  */
    font-size: 1.6rem;
  }
}

/* YES・NO チャート */
.yn-chart {
  margin: 0 auto 2rem;
  padding: 2em;
  max-width: 600px;
  font-size: 0.9rem;
}

.yn-chart__add {
  background: #fdc44f;
  color: #fff;
  padding: 0.2em 0.9em !important;
  margin: 0 !important;
  text-align: center;
  display: inline-block;
  line-height: 1.5 !important;
}

.yn-chart__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0.5em 0 0.3em !important;
  margin: 0 auto !important;
  font-size: 1.35em !important;
  font-weight: 600 !important;
  color: #fdc44f;
  letter-spacing: 1px !important;
  line-height: 1.5 !important;
}

.yn-chart__title:before, .yn-chart__title:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #fdc44f;
  display: block;
}

.yn-chart__title:before {
  margin-right: 0.7em;
}

.yn-chart__title:after {
  margin-left: 0.7em;
}

.yn-chart__ex {
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

.yn-chart > div {
  display: none;
  padding-top: 100px;
  margin-top: -100px;
}

.yn-chart > div.yn-chart__display {
  display: block;
}

.yn-chart > div > figure {
  margin: 1em 0 4em;
}

.yn-chart > div > figure img {
  display: block;
  border-radius: 10px;
}

.yn-chart > div > p {
  margin: 2em 0 0 !important;
  padding: 0.8em 1em 0.8em 4.3em !important;
  background: #fff;
  position: relative;
}

.yn-chart > div > p:before {
  content: "Q";
  background: #fdc44f;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1em;
  min-width: 48px;
}

.yn-chart > div ul {
  margin: 3em 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: none;
}

.yn-chart > div ul li {
  margin-top: 1rem !important;
  padding: 0 !important;
}

.yn-chart > div ul li:last-child {
  margin-top: 1rem !important;
}

.yn-chart > div ul li a {
  background: #E4EDE2;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
  display: block;
  padding: 0.7em !important;
  color: #333;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.yn-chart > div ul li a:hover {
  border: 1px solid #18513d;
  opacity: 1;
}

.yn-chart > div ul li:before {
  content: unset !important;
}

.yn-chart__result {
  background: #fff;
  padding: 1em;
}

.yn-chart__result-title {
  color: #fdc44f;
  font-size: 1.1em !important;
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 0 1em !important;
  border-bottom: 1px dashed #fdc44f;
}

@media screen and (max-width: 560px) {
  .yn-chart {
    padding: 1.8em 1.3em;
  }
  .yn-chart > div > figure {
    margin: 2em 0;
  }
  .yn-chart > div > p {
    margin: 1em 0 0 !important;
    padding: 0.8em 1em 0.8em 3.3em !important;
  }
  .yn-chart > div ul {
    margin: 3em 0 0 !important;
  }
  .yn-chart__title {
    font-size: 1em !important;
  }
  .yn-chart__title:before {
    margin-right: 0.3em;
  }
  .yn-chart__title:after {
    margin-left: 0.3em;
  }
  .yn-chart__ex, .yn-chart__add {
    font-size: 0.9em !important;
  }
  .yn-chart > div > p:before {
    min-width: 30px;
  }
}
/* Twitterシェアボタンなど */
.p-tw-btn, .p-check-btn {
  text-align: center;
  margin: 1.5em 5em !important;
  padding: 0 !important;
}

.p-tw-btn a, .p-check-btn a {
  display: block;
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 0.5em 0;
}

.p-tw-btn a {
  background: #00acee;
}

.p-check-btn a {
  background: #18513d;
}

.p-tw-btn a:hover, .p-check-btn a:hover {
  background-color: #00935f;
  opacity: 1 !important;
}

.yn-chart > div > p.p-check-btn {
  background: none !important;
  padding: 0 5em !important;
}

.yn-chart > div > p.p-check-btn:before {
  content: unset !important;
}

@media screen and (max-width: 800px) {
  .p-tw-btn, .p-check-btn {
    margin: 1.5em 3em !important;
  }
}
@media screen and (max-width: 560px) {
  .p-tw-btn, .p-check-btn {
    margin: 1.5em 1em !important;
  }
  .yn-chart > div > p.p-check-btn {
    padding: 0 3em !important;
  }
}
/*# sourceMappingURL=yes-no.css.map */