a,
abbr,
address,
aside,
article,
body,
button,
caption,
cite,
code,
div,
del,
dl,
dt,
dd,
em,
font,
form,
figure,
footer,
fieldset,
header,
h1,
h2,
h3,
h4,
h5,
h6,
html,
img,
iframe,
input,
legend,
li,
label,
main,
nav,
object,
ol,
option,
optgroup,
p,
pre,
q,
s,
sub,
sup,
select,
span,
section,
tt,
textarea,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
ul,
var,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

/* 全体のフォーム枠 */
.sug_form form {
  border: 1px solid #554548;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

/* 各質問のラベル（dt） */
.form_list dt {
  color: #eb6877;
  margin-top: 30px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
}

.form_list dt label {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.form_list dt:before {
  content: "●";
  padding-right: 4px;
  position: relative;
  top: 2.8px;
}

.form_list dt:first-of-type {
  margin-top: 0;
}

.txt_multi_check {
  font-size: 14px;
  letter-spacing: .2em;
  margin-left: 20px;
  color: #1b1b1b;
  white-space: nowrap;
}

/* 必須マーク */
.txt_ess {
  background: #e4007f;
  border-radius: 5px;
  color: #fff;
  width: 50px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 14px;
}

/* ラジオ・チェックボックスのラベル全体 */
.label_box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-left: 20px;
}

/* ラジオ・チェックのラベル */
.label_box label {
  display: flex;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  gap: 5px;
  color: #1b1b1b;
}

/* チェック／ラジオのスタイル調整（共通） */
.label_box .checkbox-input,
.label_box .radio-input {
  display: none;
}

.label_box label {
  position: relative;
  padding-left: 24px;
}

.label_box label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #554548;
  background-color: #fff;
  position: absolute;
  top: calc(50% + .5px);
  left: 0;
  transform: translateY(-50%);
}

.label_box label:has(.checkbox-input:checked)::after,
.label_box label:has(.radio-input:checked)::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(https://nadesiko-group.com/images/enquete/icon_check_solid_full.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: calc(50% + .5px);
  left: 0;
  transform: translateY(-50%);
}

/* テキストエリア */
textarea {
  width: 100%;
  height: 159px;
  padding: 10px;
  border: 1px solid #554548;
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  margin-top: 10px;
  transform: scale(1);
}

/* 送信ボタン */
.box_btn {
  text-align: center;
  margin-top: 40px;
}

.box_btn input[type="button"] {
  background-color: #554547;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  width: 240px;
  height: 40px;
  transition: opacity 0.3s;
  margin-right: 10px;
}

.box_btn input[type="button"]:hover {
  opacity: 0.7;
}

.box_btn input[type="submit"] {
  background-color: #554547;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  width: 240px;
  height: 40px;
  transition: opacity 0.3s;
}

.box_btn input[type="submit"]:hover {
  opacity: 0.7;
}

/* 説明文 */
.toukou_txt {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #333;
}

.txt_ess_r {
  color: #c90037;
  font-size: 14px;
  margin-top: 10px;
}

.error_read {
  color: #f00;
  font-weight: bold;
}

.form_txt{
  margin-bottom: 20px;
}