@charset "utf-8";
.hidden {
  position: absolute;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
html {
  scroll-behavior: smooth;
}
#root {
  height: 100svh;
  width: 100svw;
}
body {
  font-size: 24px;
  color: #000;
  font-family: "SUIT Variable", "맑은 고딕", "나눔고딕", dotum;
  margin: 0px;
}
* {
  font-family: "SUIT Variable", "맑은 고딕", "나눔고딕", dotum !important;
}
::-webkit-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
::-moz-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
:-moz-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
.white::-webkit-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}
.white::-moz-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}
.white:-ms-input-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}
.white:-moz-placeholder {
  color: #fff !important;
  opacity: 1 !important;
}
a {
  color: inherit;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

.img_content > img,
.img_content > * > img,
.img_content > video,
.img_content > * > video {
  display: block;
  width: 100%;
  line-height: 0;
}
video {
  outline: none;
  border: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*db입력칸 시작*/
.form_db {
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.form_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form_box .form_row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5px;
  border: 1px solid #c6c6c6;
  box-sizing: border-box;
  padding: 5px;
  align-items: center;
}
.form_box .form_row:has(> input.border) {
  border: 0px solid #c6c6c6;
}
.form_box .form_row label {
  min-width: 100px;
  border-right: 1px solid #c6c6c6;
}
.form_box .form_row:has(> input.border) label {
  border-right: 0px solid #c6c6c6;
}
.form_box .form_row input,
.form_box .form_row select {
  height: 50px;
  width: 100%;
  font-size: 1em;
}
.form_box .form_row input.border {
  border: 1px solid #c6c6c6;
  border-radius: 1em;
  padding: 0.3em 0.6em;
  box-sizing: border-box;
}
.form_box .form_row_check {
  display: flex;
  flex-direction: row;
  font-size: 0.8em;
  align-items: center;
  gap: 5px;
}
.form_box .form_row_check a {
  color: #247cff;
}

.select_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5em;
}
.select_list {
  display: flex;
  width: 100%;
  gap: 1em;
}
.select_list.select_row {
  flex-direction: row;
}
.select_list.select_col {
  flex-direction: column;
  gap: 0.8em;
}
.select_list > * {
  width: 100%;
}
.select_list > * > label {
  width: 100%;
  display: flex;
}
.select_list.select_txt > * {
  border: 1px solid #c6c6c6;
  border-radius: 0.5em;
  box-shadow: 0 3px 9px -3px rgba(0, 0, 0, 0.25);
}
.select_list.select_txt > * > label {
  box-sizing: border-box;
  padding: 1em;
  gap: 0.7em;
}
.select_list.select_img > * {
}
.select_list.select_img > * > label {
  background-position: 50% 50%;
  background-size: cover;
}
.select_list.select_img > * > label > input {
  display: none;
}

div:has(> .submit_btn) {
  position: sticky;
  bottom: 0;
  left: 0;
  line-height: 0;
}
div:has(> .submit_btn.static) {
  position: relative;
  line-height: 0;
}
.submit_btn {
  width: 100%;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .select_list {
    gap: 0.6em;
  }
  .select_list.select_col {
    gap: 0.5em;
  }
  .form_db {
    padding: 1em;
  }
  .form_box .form_row label {
    min-width: 50px;
  }
  .form_box .form_row input,
  .form_db .form_box .form_row select {
    height: 40px;
  }
}
