アンケート

アンケート(複数選択・単一選択・選択すると色が変化)

Q1質問テキストが入ります。質問テキストが入ります。質問テキストが入ります。

下記Beyondコード

JS head

なし

HTML

<div class="c-enquete">
    <div class="m-enquete__ttl"><span class="m-enquete__num">Q1</span><span class="m-enquete__lead">質問テキストが入ります。質問テキストが入ります。質問テキストが入ります。</span></div>
    <div class="choices_box">
        <!-- 1つ分の選択肢はここからコピー。 --><input type="checkbox" name="choice01" id="choice01-1" class="selecter"><label for="choice01-1" class="choice-check">回答1</label><!-- 1つ分の選択肢はここまでコピー -->

        <input type="checkbox" name="choice01" id="choice01-2" class="selecter"><label for="choice01-2" class="choice-check">回答2</label>

        <input type="checkbox" name="choice01" id="choice01-3" class="selecter"><label for="choice01-3" class="choice-check">回答3</label>

        <input type="checkbox" name="choice01" id="choice01-4" class="selecter"><label for="choice01-4" class="choice-check">回答4</label>
    </div>
</div>

CSS

 .c-enquete {
  max-width: 750px;
  margin: 0 auto 30px;
  width: 100%;
  position: relative;
}

 .m-enquete__ttl {
  margin: 0 auto;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

 .m-enquete__lead {
  width: 90%;
  font-size: 20px;
  margin-top: 20px;
}

 .m-enquete__num {
  color: #fff;
  font-size: 40px;
  background: #00f;
  line-height: 1;
  width: 200px;
  padding: 5px 0;
  border-radius: 10px;
  text-align: center;
  align-self: flex-start;
  position: relative;
}

 .m-enquete__num::before {
  border-width: 20px 10px 0 10px;
  border-color: #00f transparent transparent transparent;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
  border-style: solid;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
}

 .choices_box {
  margin-top: 20px;
  text-align: center;
}

 .selecter {
  display: none;
}

 .selecter+.choice-check {
  width: 80%;
  background: #0ff;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: left;
  display: inline-block;
  cursor: pointer;
}

 .selecter:checked+.choice-check {
  background: #00f;
  color: #fff;
}