<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ここにCSSコードを追加
 .change-screen-questionnaire {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  box-sizing: border-box;
}

 .is-hidden {
  display: none !important;
}

 .question-item {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 .progress {
  display: flex;
  justify-content: center;
  gap: 1em;
}

 .progress-item {
  font-size: clamp(16px, 4vw, 30px);
  font-weight: 600;
  text-align: center;
  background-color: #cccccc;
  color: #ffffff;
  line-height: 1;
  padding: 0.8em 0.6em;
}

 .progress-item.current {
  background-color: #c2ae79;
}

 .question-text {
  display: flex;
  width: 80%;
  margin: 6% auto;
  padding: 20px 20px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1.45;
  font-size: clamp(16px, 4vw, 30px);
  color: #000000;
  position: relative;
  z-index: 1;
  box-sizing: border-box
}

 .question-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: -1;
  background-color: #f5ebd1;
  box-sizing: border-box
}

 .question-text::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  border: 2px solid #d3c08d;
  box-sizing: border-box
}

 .question-text p {
  margin: 0;
}

 .image-wrap {
  width: 90%;
  margin: 5% auto 0;
  box-sizing: border-box;
}

 .image-wrap picture,
 .image-wrap img,
 .image-wrap video {
  width: 100%;
  height: auto;
  margin: 0 !important;
  vertical-align: bottom;
}

 .select-wrap {
  width: 90%;
  margin: 5% auto 0;
}

 .select-item {
  padding: 0;
}

 .select-item input[type="checkbox"] {
  display: none;
}

 .select-item label {
  position: relative;
}

 .select-item input[type="checkbox"]+span {
  display: inline-block;
  padding-left: 1.75em;
  margin-bottom: 0.75em;
  font-size: clamp(16px, 4vw, 30px);
  line-height: 1.5;
  cursor: pointer;
  position: relative;
}

 .select-item input[type="checkbox"]+span::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(0) translateY(-50%);
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  opacity: 0.6;
  transition: all 0.12s;
}

 .select-item input[type="checkbox"]:checked+span::before {
  width: 0.5em;
  height: 1em;
  top: 30%;
  border-right-color: #6cc0e5;
  border-bottom-color: #6cc0e5;
  opacity: 1;
  transform: rotate(45deg) translateY(-50%);
  border-top-color: transparent;
  border-left-color: transparent;
  box-sizing: border-box;
}

 .btn-text-content {
  width: 80%;
  margin: 40px auto 0;
  font-size: clamp(14px, 3.2vw, 24px);
  line-height: 1.35;
  box-sizing: border-box;
  animation: btnUpDown 2.5s ease infinite;
}

 .text-wrap {
  text-align: center;
  color: #042356;
  font-size: 1.25em;
  font-weight: 700;
}

 .text-wrap span {
  display: inline-block;
  position: relative;
  padding-inline: 1.25em;
}

 .text-wrap span::before,
 .text-wrap span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #042356;
}

 .text-wrap span::before {
  left: 0;
  transform: rotate(-30deg);
}

 .text-wrap span::after {
  right: 0;
  transform: rotate(30deg);
}

 .btn-wrap {
  width: 100%;
  margin: 1.25em auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
}

 .btn-wrap>.btn-item {
  width: 100%;
  margin-bottom: 10px;
}

 .btn-wrap a.btn:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #e55503;
  border-bottom: 10px solid #8f2800;
  border-radius: 99px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1em 1.25em;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

 .btn-wrap a:hover {
  opacity: 0.75;
}

@keyframes btnUpDown {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-15px);
  }

  20% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-15px);
  }

  40% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

コメント終わり */ 

</style>
<!-- end Simple Custom CSS and JS -->
