/*================================================
    input / radio / select 
=================================================*/

input,
select {
  padding: 14px 20px;
  border-radius: 4px;
  border: solid 1px #dbdbdb;
  background-color: #fff;
  cursor: pointer;
}
select option {
  border: 1px solid #dbdbdb;
  background: #fff;
  border-radius: 4px;
}

textarea {
  padding: 14px 20px;
  border-radius: 4px;
  border: solid 1px #dbdbdb;
  resize: none;
}

input[type="checkbox"],
input[type="file"] {
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: -0.1rem;
  width: 0.1rem;
  height: 0.1rem;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="checkbox"] + label {
  position: relative;
  display: block;
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #dbdbdb;
  box-sizing: border-box;
}

input[type="checkbox"]:checked + label::before {
  background: #ff8318;
  border: 2px solid #ff8318;
  box-sizing: border-box;
}

input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type="checkbox"]:disabled + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #dbdbdb;
  background: #dbdbdb;
  box-sizing: border-box;
}

input[type="checkbox"]:disabled:checked + label::before {
  border: 2px solid #dbdbdb;
  background: #dbdbdb;
  box-sizing: border-box;
}

input[type="checkbox"]:disabled:checked + label::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  opacity: 0.4;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type="checkbox"] + label span {
  position: relative;
  display: inline-block;
  margin: 0 1em 0 2.2em;
  text-align: left;
  line-height: 24px;
}

input[type="radio"] {
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: -0.1rem;
  width: 0.1rem;
  height: 0.1rem;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="radio"] + label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0.3em 0.5em 0.3em 0;
}

input[type="radio"] + label:before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
  top: 0;
  transform: translate(0);
  display: inline-block;
  background: #fff;
  margin-right: 4px;
  vertical-align: top;
}

input[type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff8318;
  border: 1px solid #ff8318;
}

input[type="radio"]:checked:disabled + label:before {
  border: 1px solid #b1b1b7;
}

input[type="radio"]:checked:disabled + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b1b1b7;
  border: 1px solid #b1b1b7;
}

input[type="radio"]:checked + label:before {
  border: 1px solid #ff8318;
}

input:read-only {
  background: #fff;
  border: none;
  outline: none;
}

input:read-only:focus {
  border: none;
  outline: none;
}

input:disabled {
  background: #f5f6f7;
}

.input_100 {
  width: 100% !important;
}

::placeholder {
  color: #b1b1b7;
}

.error_input {
  border: 1px solid #fc655c !important;
}

.success_input {
  border: 1px solid #0b6fe8 !important;
}

.status_choose {
  display: flex;
  line-height: 20px;
  justify-content: flex-start;
}

.pw-wrap {
  position: Relative;
}

.pw-wrap .pw_btn {
  border: 0;
  background: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: 2em;
  width: 20px !important;
  height: 20px;
  z-index: 9;
  padding: 0;
  transform: translateY(-50%);
}

.pw-wrap .password_show {
  background: url("/static/rspt/images/inc/icon_eye_on_20.png") no-repeat center center;
}

.pw-wrap .password_hidden {
  background: url("/static/rspt/images/inc/icon_eye_off_20.png") no-repeat center center;
}

/*================================================
      button
=================================================*/

button {
  border-radius: 4px;
  border: 0;
  background: #fff;
  line-height: 36px;
  padding: 0 20px;
  font-weight: 500;
}

button img {
  display: inline-block;
  vertical-align: text-bottom;
}

.btn_144 {
  width: 144px !important;
  line-height: 48px;
}

.btn_134 {
  width: 134px !important;
  line-height: 48px;
}

.btn_120 {
  width: 120px !important;
  line-height: 48px;
}

.btn_112 {
  width: 112px !important;
  line-height: 48px;
}

.btn_100 {
  width: 100% !important;
  line-height: 48px;
}

.btn_50 {
  width: 50%;
  line-height: 48px;
}

.btn_96 {
  width: 96px;
}

.orange_btn {
  border: 1px solid #ff8318;
  background: #ff8318;
  color: #fff;
}

.orange_btn:hover {
  border: 1px solid #e37413;
  background: #e37413;
}

.orange_btn:disabled {
  border: 1px solid #faa861;
  background: #faa861;
}

.orange_line_btn,
.orange_line_btn:hover {
  border: 1px solid #ff8318;
  color: #ff8318;
}

.orange_line_btn:disabled {
  border: 1px solid #faa861;
  color: #faa861;
}

.gray_line_btn {
  border: 1px solid #dbdbdb;
  color: #1d1d1f;
}

.gray_line_btn:hover {
  background: #f5f6f7;
  color: #1d1d1f;
}

.gray_line_btn:disabled {
  background: #f5f6f7;
  border: 1px solid #ededed;
  color: #b1b1b7;
}

.text_btn {
  color: #7d7d87;
}

.text_btn:hover {
  color: #1d1d1f;
}

.text_btn:disabled {
  color: #b1b1b7;
}

/*================================================
  table
=================================================*/

table {
  position: relative;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

table th {
  background: #f7f7fa;
  color: #7d7d87;
  padding: 14px 0;
  font-weight: 500;
  height: 48px;
  border-bottom: 1px solid #ededed;
}

table td {
  color: #555555;
  height: 48px;
  border-bottom: 1px solid #ededed;
}

table select {
  width: auto !important;
  border: none !important;
  display: block;
  padding: 0 16px 0 0 !important;
  background: #fff url(/static/rspt/images/inc/icon_arrow_down_16_01.png) right center
    no-repeat !important;
}

.table_id {
  position: relative;
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
table th input[type="checkbox"] + label::before,
table td input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 20px;
}
table th input[type="checkbox"]:checked + label::after,
table td input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 28px;
  top: -6px;
}

.text_underline {
  text-decoration: underline;
}
.table_option {
  padding: 0 24px;
}

.table_option_box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.table_option_select {
  color: #95a5b9;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.none_border_select .tui-select-box-input {
  border: 0;
  padding: 0;
}

.none_border_select:first-of-type .tui-select-box-input {
  padding: 0 15px 0 0;
}

.none_border_select .tui-select-box-item {
  padding: 8px 10px;
}

.none_border_select .tui-select-box-input.tui-select-box-open,
.none_border_select .tui-select-box-input:focus {
  border: 0;
  outline: none;
}

.table_option_select .tui-select-box-dropdown {
  min-width: 120px;
}

.table_option ul li span {
  color: #ff8318;
}

table td .none_border_select {
  padding: 0 16px 0 0;
  border: 0;
}

@media all and (max-width: 880px) {
  .table_id {
    max-width: 80px;
  }
}

/*================================================
  paging
=================================================*/

.page_nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.page_nav li a {
  display: block;
  color: #6e6e6e;
  margin: 0 3px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  text-align: center;
}

.page_nav li a img {
  vertical-align: sub;
}

.page_on {
  background: #ffeddc;
  border-radius: 4px;
  color: #ff8318 !important;
  border: 1px solid #ff8318;
}

/*================================================
  scrollbar
=================================================*/

::-webkit-scrollbar {
  width: 8px;
  height: 20px;
}

::-webkit-scrollbar-thumb {
  background: #b1b1b7;
  border: none;
  border-radius: 12px;
}

::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 12px;
}

/*================================================
  section common component
=================================================*/

.wrap {
  position: relative;
  width: calc(100vw - 196px);
  min-width: 600px;
  height: 100vh;
  margin-left: 196px;
  overflow-x: hidden;
  overflow-y: auto;
}

section {
  position: relative;
}

.content_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ededed;
  padding: 0 24px;
}

.content_title h2 {
  font-size: 20px;
  line-height: 65px;
  color: #1d1d1f;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content_title h2 button {
  line-height: 100%;
  padding: 0 15px 0 0;
}

.content_title h2 span {
  font-size: 16px;
  color: #7d7d87;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 500;
}

.content_title h2 span img {
  display: inline-block;
  padding: 0 0.3em;
}

.content_sub_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #ededed;
  line-height: 63px;
  min-height: 63px;
}

.content_sub_title h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  color: #1d1d1f;
  font-weight: 700;
}

.content_sub_title h3 span {
  font-size: 12px;
  font-weight: 500;
  margin-left: 0.5em;
}

.member_class {
  flex-direction: column !important;
  line-height: 100%;
  align-items: flex-start !important;
}

.member_class span {
  margin: 3px 0 0 0 !important;
}

.member_class_status {
  display: flex;
  gap: 20px;
}

.member_class_status li dl dt,
.member_class_status li dl dd {
  line-height: 100%;
  text-align: right;
}

.member_class_status li dl dd {
  margin-top: 10px;
  font-size: 12px;
  color: #7d7d87;
}

.content_box {
  position: relative;
  padding: 32px 24px;
}

.content_box article {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.btn_box button:first-of-type {
  margin-right: 0.3em;
}

.search_condition {
  padding: 24px;
}

.search_chk {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-bottom: 18px;
  gap: 17px;
}

.search_chk_wrap {
  width: 50%;
  flex: 1 1 auto;
}

.search_condition01 {
  padding: 32px;
}

.search_chk01 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.search_chk01 .select_100 {
  width: 100%;
}

.search_input {
  position: relative;
}

.search_input input {
  width: 100%;
  padding-left: 50px;
}

.search_input button {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  padding: 0;
  line-height: 100%;
}

.search_input button:focus {
  border: 1px solid #000;
}

.color_blue {
  color: #426aff;
}

.color_orange {
  color: #ff8318;
}

.color_red {
  color: #ff5348;
}

.color_gray_100 {
  color: #555;
}

.essential {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff8318;
  vertical-align: middle;
  margin: 0 0.3em;
}

/*================================================
  student common component
=================================================*/

.list_count {
  display: block;
  color: #7d7d87;
  padding: 0 0 1em 32px;
}

.list_count em {
  color: #ff8318;
}

.none_list {
  box-shadow: none !important;
  border: 0 !important;
  height: 100%;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.none_list span {
  display: block;
  font-size: 24px;
  margin-top: 1em;
}

.list_text {
  width: 70%;
}

.list_text dl dt {
  display: inline-block;
  background: #ffefee;
  color: #ff5348;
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}

.list_text dl dd {
  color: #7d7d87;
  font-size: 12px;
}

.list_text dl dd span {
  display: inline-block;
}

.list_text dl dd:first-of-type {
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1f;
  padding: 0 0 12px 0;
}

.wrap_box {
  width: 100%;
  height: 100vh;
  margin-left: 0;
  min-width: 800px;
}

.examtype_title {
  position: relative;
  width: 100%;
  padding: 21px 24px;
  border-bottom: 1px solid #ededed;
  background: #f5f6f7;
  text-align: center;
}

.examtype_title h1 {
  font-size: 18px;
}

.examtype_title button {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
}

.examtype_content {
  position: relative;
  width: calc(100% - 48px);
  margin: 32px 24px 90px 24px;
  background: #fff;
  box-shadow: 0 0 10px rgba(11, 11, 11, 0.1);
  border-radius: 8px;
}

.examtype_question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ededed;
  padding: 20px 32px;
}

.examtype_question dl dt {
  font-size: 24px;
  font-weight: 700;
}

.examtype_question dl dd {
  color: #7d7d87;
}

.question_num {
  text-align: center;
  padding-right: 32px;
  width: 74px;
}

.question_num dd {
  font-size: 12px;
}

.question_text_teacher {
  width: calc(100% - 74px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.examtype_answer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 32px;
  margin: 0 auto;
}

.listen_count {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #ff8318 url("/static/rspt/images/inc/icon_speaker_48.png") no-repeat center
    center;
  margin-right: 2em;
}

.listen_count:disabled {
  background: #b1b1b7 url("/static/rspt/images/inc/icon_speaker_48.png") no-repeat center
    center;
}

.listen_count span {
  position: absolute;
  bottom: 5px;
  right: 7px;
  font-size: 16px;
  color: #fff;
  line-height: 100%;
}

.triangle {
  position: absolute;
  top: 50%;
  left: 113px;
  transform: translateY(-50%);
  width: 19px;
  height: 36px;
  background: #fff;
}

.triangle img {
  width: 100%;
}

.answer_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 98px);
  border: 2px solid #ededed;
  border-radius: 24px;
  min-height: 100px;
}

.answer_note,
.answer_note_choose {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 5px 10px;
}

.answer_note input {
  display: inline-block;
  width: calc(100% / 5 - 40px);
  border: 0;
  border-bottom: 2px solid #dbdbdb;
  border-radius: 0;
  font-size: 26px;
  text-align: center;
}

.answer_note_choose {
  text-align: center;
}

.answer_note_choose .text {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 0;
}

.answer_note input:focus {
  border-bottom: 2px solid #dbdbdb;
}

.answer_note_choose input:read-only,
.answer_choose_select input:read-only {
  background: #fff;
}

.answer_note input.active {
  border-bottom: 2px solid #ff8318;
}

.reset_btn {
  width: 48px;
  height: 48px;
  line-height: 100%;
  border-radius: 50%;
  border: 2px solid #dddddd;
  text-align: center;
  padding: 0;
}

.reset_btn_click {
  animation: aaa 0.5s linear;
}

@keyframes aaa {
  to {
    transform: rotate(360deg);
  }
}

.answer_select,
.answer_choose_select {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  padding: 0 32px 32px 32px;
}

.answer_select button {
  width: calc(100% / 5);
  border-radius: 8px;
  font-size: 24px;
}

.answer_choose_select button {
  flex: 1;
  border-radius: 4px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 0px rgba(11, 11, 11, 0.1);
  font-size: 16px;
  text-align: left;
  line-height: 150%;
  padding: 12px 20px;
}

.answer_choose_select button.active {
  border: 2px solid #ff8318;
  background: #fdf7f1;
}

.answer_select button:disabled {
  background: #dbdbdb;
  border: 1px solid #dbdbdb;
}

.examtype_footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ededed;
  box-shadow: 0 0 10px rgba(11, 11, 11, 0.1);
  background: #f5f6f7;
  padding: 11px 24px;
}

.question_time,
.question_next {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.question_time {
  font-size: 18px;
  color: #7d7d87;
}

.question_time img {
  margin-right: 0.5em;
}

.question_time span {
  color: #ff5348;
  margin-left: 0.5em;
}

.question_next dl {
  padding: 0 24px;
  border-left: 1px solid #dddddd;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: #b1b1b7;
}

.question_next dl dt {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
  padding-right: 0.3em;
}

.images_choose {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
}

.images_choose img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.images_choose .answer_choose_select {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: center;
  width: 50%;
  gap: 10px;
}

.long_sentences {
  display: flex;
  width: 50%;
  height: 330px;
  align-items: center;
}

.img_wrap_line {
  width: 50%;
  min-height: 380px;
  align-self: stretch;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 20px 24px;
  overflow: hidden;
}

.long_sentences_line {
  display: flex;
  width: 50%;
  min-height: 380px;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 20px 8px 20px 24px;
  overflow: hidden;
}

.long_sentences_line .long_sentences_readonly {
  max-height: 380px;
  font-size: 20px;
  font-family: "Noto Serif", serif !important;
  width: 100%;
  padding-right: 10px;
  font-size: 20px;
  line-height: 1.5;
  overflow: auto;
}

button.readonly {
  pointer-events: none;
}

button.answer_style {
  border: 2px solid #426aff !important;
  background: #e8ecfc url("/static/rspt/images/inc/icon_check_16.png") no-repeat 20px center !important;
  padding-left: 3em !important;
  box-shadow: none !important;
  pointer-events: none;
}

button.wrong_answer_style {
  border: 2px solid #ff5348 !important;
  background: #ffefee url("/static/rspt/images/inc/icon_xmark_16.png") no-repeat 20px center !important;
  padding-left: 3em !important;
  box-shadow: none !important;
  pointer-events: none;
}

/*================================================
  teacher common component
=================================================*/

.chk_item {
  position: fixed;
  left: 196px;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  box-shadow: 0 0 10px rgba(11, 11, 11, 0.1);
}

.chk_item_count {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.chk_item_count dd {
  font-weight: 500;
}

.chk_item_count dd em {
  color: #ff8318;
  padding: 0 0.2em;
}

.chk_btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.chk_btn button {
  line-height: 48px;
  width: 120px;
}

.create_box {
  position: relative;
  padding: 24px;
}

.create_list {
  border: 1px solid #ededed;
  border-radius: 8px;
}

.create_list dl,
.create_list_h120 {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 72px;
  border-bottom: 1px solid #ededed;
}

.create_list_h120 {
  line-height: 120px !important;
}

.create_list_h_auto {
  display: table !important;
  table-layout: fixed;
}

.create_list_h_auto dt,
.create_list_h_auto dd {
  display: table-cell;
  vertical-align: middle;
  padding: 0 16px 12px 24px !important;
}

.create_list dl:last-of-type {
  border-bottom: 0px;
}

.create_list dl dt {
  padding-left: 24px;
  background: #f7f7fa;
  color: #7d7d87;
  width: 160px;
}

.create_list dl dd {
  width: calc(100% - 160px);
  padding: 0 16px 0 24px;
}

.create_list_h .status_choose {
  margin: 1em 0;
}

.create_list dl dd input[type="text"],
.create_list dl dd input[type="password"] {
  width: 100%;
}

.create_btn_box {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid #ededed;
  padding: 12px 24px;
  gap: 10px;
}

.date_input {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.date_span {
  padding: 0 10px;
}

.choose_member {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid #ededed;
  border-radius: 4px;
  padding: 8px 16px;
  max-height: 150px;
  overflow-y: auto;
}

.choose_member ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.choose_member ul li {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: auto;
  background: #ff8318;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
}

.choose_member ul li button {
  padding: 0 5px;
  background: transparent;
  border: 0;
  line-height: 1;
}

.choose_btn {
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.choose_btn button {
  padding: 0 5px;
}

.answer_table {
  position: Relative;
  display: flex;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 32px;
  text-align: center;
}

.answer_table dl {
  margin-bottom: 15px;
  width: calc(100% / 10);
}

.answer_table dl dt {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  line-height: 38px;
  margin-bottom: 5px;
}

.answer_table_gesture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ff8318;
  color: #fff;
  border-radius: 50%;
  width: 192px;
  height: 192px;
}

.answer_table_gesture img {
  margin-bottom: 1em;
}

.answer_table_gesture span {
  line-height: 20px;
}

@media all and (max-width: 1048px) {
  .answer_table dl {
    margin-bottom: 15px;
    width: calc(100% / 8);
  }
}

@media all and (max-width: 900px) {
  .answer_table dl {
    margin-bottom: 15px;
    width: calc(100% / 7);
  }
}

@media all and (max-width: 800px) {
  .answer_table dl {
    margin-bottom: 15px;
    width: calc(100% / 5);
  }
}
