:root {
  --main-color: #ffbb00;
  --bg-color: #f9f9f9;
  --black-color: #333333;
  --sub-txt-color: #777777;
  --brown-txt-color: #5e3e23;
  --border-color: #d9d9d9;
  --blue-color: #006cb7;
  --sub-txtmy-color: #a9a9a9;
}

* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color: transparent;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-thumb {
  height: 10%;
  background: #999;
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', 'Open Sans';
  position: relative;
  background-color: var(--bg-color);
}

/*공통*/
.page-area {
  padding-top: 88px;
  min-height: calc(100vh - 192px);
}

.basic-area {
  padding: 187px 0 150px;
  min-height: calc(100vh - 192px);
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-wrap {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.user-wrap {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.product-wrap {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
}

.product-wrap .step-box > p {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 20px;
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}

.top-btn img {
  width: 20px;
  height: 20px;
}

.btn {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}

.btn.btn-sm {
  /*max-width: 150px;*/
  max-width: 250px;
}

.btn.btn-xs {
  /*max-width: 80px;*/
  max-width: 150px;
}

.btn.btn-solid-tb {
  background-color: var(--main-color);
  color: var(--black-color);
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-weight: 500;
  transition-duration: 0.4s, 0.4s;
}
.btn.btn-solid-tb:hover {
  background-color: #f0b000;
  /*color: #f0f0ef;*/
}

.btn.btn-solid-tbform {
  background-color: var(--main-color);
  color: var(--black-color);
  transition-duration: 0.4s, 0.4s;
}
.btn.btn-solid-tbform:hover {
  background-color: #f0b000;
  /*color: #f0f0ef;*/
}
.btn.btn-solid-tw {
  background-color: var(--main-color);
  color: var(--black-color);
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-weight: 500;
  transition-duration: 0.4s, 0.4s;
}

.btn.btn-solid-tw:hover {
  background-color: #f0b000;
  /*color: #f0f0ef;*/
  /*border: 1px solid #D9D9D9;*/
  /*box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;*/
  /*box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;*/
}

.btn.btn-border {
  background-color: #fff;
  border: 1px solid var(--border-color);
  color: var(--sub-txt-color);
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-weight: 500;
}

.btn.blue-btn {
  background-color: #325276;
  color: #fff;
}

.btn.red-btn {
  background-color: #ab3131;
  color: #fff;
}

.input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.input:focus {
  outline: 2px solid var(--main-color);
  border: 1px solid transparent;
}

.input.input-sm {
  max-width: 250px;
}

.input.input-xs {
  max-width: 150px;
}

/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.modal .terms-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}

.modal .terms-box .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.modal .terms-box .tit-box span {
  font-size: 20px;
  font-weight: 600;
}

.modal .terms-box .tit-box button {
  display: inline-block;
}

.modal .terms-box .tit-box img {
  width: 15px;
  height: 15px;
}

.modal .terms-box .content {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: auto;
  min-height: 200px;
  max-height: 500px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid var(--border-color);
}

/*header*/
.ham {
  display: none;
}

#ham_btn {
  display: none;
}

#ham_btn + label {
  position: relative;
  display: block;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}

#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black-color);
  border-radius: 5px;
  transition: all 300ms;
}

#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}

#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}

#ham_btn + label > span:nth-child(3) {
  bottom: 0;
  background-color: var(--main-color);
}

#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.header-wrap > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}

.header-wrap > .wrap .h-logo {
  width: 100%;
  max-width: 165px;

}


.header-wrap > .wrap .login-btn {
  /*font-family: 'HelveticaInseratLTStd-Roman';*/
  font-size: 16px;
  color: var(--black-color);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
}

.login-btn:hover {
  color: #0D7CFF;
  text-shadow: 0 0 10px #0D7CFF, 0 0 20px #0D7CFF, 0 0 30px #0D7CFF, 0 0 40px #0D7CFF;
}

.header-wrap .user {
  display: flex;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-wrap .user .user-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-wrap .user .user-type span:first-child {
  font-size: 14px;
  color: var(--black-color);
  /*background-color: var(--main-color);*/
  /*border-radius: 4px;*/
  /*padding: 4px 8px;*/
}

.header-wrap .user .user-type span:nth-child(2) {
  color: var(--black-color);
}

.header-wrap .user .user-type span:nth-child(2) a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  transition-duration: 0.4s, 0.4s;
}

.header-wrap .user .user-type span:nth-child(2) a:hover {
  opacity: 0.6;
}

.header-wrap .user .user-type span:nth-child(2) a img {
  width: 24px;
}

.header-wrap .user .user-type span:nth-child(2) a b {
  font-weight: 400;
}

.header-wrap .user .user-type .border-btn {
  font-size: 15px;
  color: var(--black-color);
  background-color: #fff;
  border-radius: 13px;
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  transition-duration: 0.4s, 0.4s;
}

.header-wrap .user .user-type .border-btn:hover {
  background-color: #efefef;
  color: var(--black-color);
  border: 1px solid #efefef;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gnb li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  position: relative;
  transition-duration: 0.4s, 0.4s;
}

.gnb li:hover > a {
  color: var(--main-color);
}

.gnb li > a::after {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  width: 0;
  transition: all 0.2s;
  border-bottom: 4px solid var(--main-color);
}

.gnb li:hover > a::after {
  width: 100%;
  transition: all 0.2s;
}

/*footer*/
.footer-wrap {
  background-color: var(--black-color);
}

.footer-wrap > .wrap {
  padding: 33px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-wrap > .wrap .logo-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.footer-wrap > .wrap .logo-box .f-logo {
  display: block;
}

.footer-wrap > .wrap .logo-box .f-logo img {
  width: 165px;
}

.footer-wrap > .wrap .bt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.footer-wrap > .wrap .bt .terms-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-wrap > .wrap .bt .terms-box a {
  width: 150px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 7px 20px;
  border: 1px solid #fff;
  border-radius: 25px;
  cursor: pointer;
}

.footer-wrap > .wrap .info-box {
  width: 100%;
  max-width: 60%;
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.footer-wrap > .wrap .info-box > div {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-wrap > .wrap .info-box span {
  white-space: nowrap;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-wrap > .wrap .info-box > span {
  width: 100%;
  margin-top: 36px;
}

/*유저*/
.user-area {
  background-image: url('../images/common/user_bg_img.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 80px 0;
  min-height: 100vh;
  min-height: 100dvh;
}

.user-area .user-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  overflow-y: auto;
  max-width: 520px;
}

.user-area .user-wrap::-webkit-scrollbar {
  display: none !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.user-area .user-wrap::-webkit-scrollbar-thumb {
  display: none !important;
}

.user-area .user-wrap::-webkit-scrollbar-track {
  display: none !important;
}

.user-logo {
  display: block;
}

.user-logo img {
  width: 165px;
}

.user-box {
  width: 98%;
  background-color: #fff;
  padding: 50px;
  border-radius: 40px;
}

.user-boxrequest {
  min-width: 600px;
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  /*border: solid;*/
  /*border-color: var(--main-color);*/
  /*border-width: 2px;*/
  /*box-shadow: 0 0 10px rgba(0, 0, 255, 0.7);*/
}

.user-box .box-tit {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-color);
  text-align: center;
}

.user-box .box-expl {
  font-weight: 400;
  color: var(--black-color);
  text-align: center;
  line-height: 1.3;
  margin: 12px 0 50px;
}

.user-box .input-box,
.sell-box .input-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.user-box .save-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.user-box .save-box.m-0 {
  margin-bottom: 0;
}

.user-box .save-box label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-box .save-box label input[type='checkbox'] {
  width: 15px;
  height: 15px;
  margin: 0;
}

.user-box .save-box label span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
  white-space: nowrap;
}

.user-box .save-box > a {
  font-size: 14px;
  color: var(--black-color);
}

.user-box .register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--black-color);
  margin-top: 50px;
}

.user-box .register-link a {
  display: inline-block;
  color: #0089ff;
}

/* 매물등록 메뉴 box */
.sale-box {
  width: 100%;
  background-color: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sale-box .box-tit {
  color: var(--blue-color);
}

/* 매도의뢰 메뉴 box */
.sell-box {
  width: 100%;
  background-color: #fff;
  padding: 50px;
  border-radius: 24px;
}

.user-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.radio-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}

.radio-box .radio-btn {
  width: 100%;
  display: flex;
  align-items: center;
}

.radio-box .radio-btn input[type='radio'] {
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.radio-box .radio-btn label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
}

.radio-box .radio-btn label span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.radio-box .radio-btn label span::before {
  content: '';
  display: inline-block;
  background-image: url('../images/icons/radio_off.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 11px;
  margin-right: 5px;
}

.radio-box .radio-btn input[type='radio']:checked + label {
  border: 1px solid var(--main-color);
}

.radio-box .radio-btn input[type='radio']:checked + label span {
  color: var(--main-color);
}

.radio-box .radio-btn input[type='radio']:checked + label span::before {
  background-image: url('../images/icons/radio_on.png');
}

.user-area .terms-expl {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 30px;
}

.user-area .terms-expl p {
  display: block;
  font-size: 14px;
  color: var(--black-color);
  line-height: 1.3;
  text-indent: -8px;
  margin-left: 8px;
  word-break: keep-all;
}

.user-area .terms-expl p .red-txt {
  font-weight: 600;
  color: #ad0407;
}

.user-area .terms-expl p b {
  font-weight: 600;
}

.user-area .terms-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.user-area .terms-content .agree {
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-area .terms-content .agree input {
  margin: 0;
  width: 15px;
  height: 15px;
}

.user-area .terms-content .agree label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.user-area .terms-content > a {
  font-size: 14px;
  color: var(--sub-txt-color);
  text-decoration: underline;
  cursor: pointer;
}

.user-area .terms-content .content {
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 20px;
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-color);
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.input-grid.sub {
  padding: 16px;
  background-color: var(--bg-color);
  margin-top: 8px;
}

.input-grid.sub .item-flex:first-child {
  margin-bottom: 16px;
}

.input-grid.sub .item > p {
  font-size: 14px;
  font-weight: unset;
  color: var(--black-color);
}

.input-grid.m-0 {
  margin-top: 0;
}

.input-grid .guide {
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-grid .guide p:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
}

.input-grid .guide p:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
}

.input-grid .item-flex {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.input-grid .item-flex.bg-box {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 12px 20px;
}

.input-grid .item-flex .item {
  width: 50%;
}

.input-grid .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-grid .item .flex-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-grid .item .warning {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-txt-color);
}

.input-grid .item > p {
  font-weight: 600;
  color: var(--black-color);
}

.input-grid .item > p.text-xs {
  font-size: 14px;
  font-weight: 400;
  color: var(--black-color);
}

.input-grid .item input[type='text'],
.input-grid .item input[type='number'],
.input-grid .item input[type='password'],
.input-grid .item input[type='file'],
.input-grid .item input[type='email'],
input[type='date'],
select,
textarea {
  padding: 0 20px;
  height: 45px;
  line-height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
}

.input-grid .item input[type='text'].req,
.input-grid .item input[type='number'].req,
.input-grid .item input[type='password'].req,
.input-grid .item input[type='file'].req,
.input-grid .item input[type='email'].req,
input[type='date'].req,
select.req,
textarea.req {
  border: 1px solid rgb(196, 28, 28);
}

.input-grid .item input[type='email']:read-only,
.input-grid .item input[type='text']:read-only,
.input-grid .item input[type='password']:read-only {
  background-color: #f1f1f1 !important;
}

.input-grid .item input[type='number']::-webkit-outer-spin-button,
.input-grid .item input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-grid .item input[type='text'].text-right {
  text-align: right;
}

.input-grid .item input:focus {
  outline: 2px solid var(--main-color);
  border: 1px solid transparent;
}

.input-grid .item select:focus {
  outline: 2px solid var(--main-color);
  border: 1px solid transparent;
}

input[type='date'] {
  width: 100%;
  max-width: 170px;
}

.input-grid .item textarea {
  height: 150px;
  line-height: 1.3;
  padding: 20px;
}

.input-grid .item input[type='text']:read-only {
  background-color: var(--bg-color);
}

.input-grid .item .input-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.input-grid .item .input-flex input.pr-50 {
  padding-right: 50px;
}

.input-grid .item .input-flex .unit {
  position: absolute;
  right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.input-grid .item .input-flex.flex-wrap {
  flex-wrap: wrap;
}

.input-grid .item .expl {
  display: inline-flex;
  background-color: #f1f1f1;
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black-color);
}

.input-grid .item .input-flex label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  cursor: pointer;
}

.input-grid .item .flex-box .input-flex label {
  width: auto;
}

.input-grid .item .input-flex .radio-btn input {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: none;
}

.input-grid .item .input-flex .radio-btn input[type='radio'] + label::before {
  content: '';
  display: inline-block;
  background-image: url('../images/icons/radio_circle_off.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.input-grid
  .item
  .input-flex
  .radio-btn
  input[type='radio']:checked
  + label::before {
  background-image: url('../images/icons/radio_circle_on.png');
}

.input-grid .item .input-flex .chk-btn input {
  margin: 0;
  width: 1px;
  height: 1px;
  cursor: pointer;
  border: 0.1rem solid #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input-grid .item .input-flex .chk-btn input {
  outline: 2px solid transparent !important;
  border: transparent !important;
}

.input-grid .item .input-flex .chk-btn input[type='checkbox'] + label::before {
  content: '';
  display: inline-block;
  background-image: url('../images/icons/chk_off.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.input-grid
  .item
  .input-flex
  .chk-btn
  input[type='checkbox']:checked
  + label::before {
  background-image: url('../images/icons/chk_on.png');
}

.input-grid .item .input-flex .radio-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 50%;
}

.input-grid .item .input-flex.flex-wrap .radio-btn {
  width: calc(50% - 5px);
}

.input-grid .item .input-flex .chk-btn {
  display: flex;
  align-items: center;
  width: 50%;
}

.input-grid .item .input-flex.flex-wrap .chk-btn {
  width: calc(50% - 5px);
}

.input-grid .item .input-flex label span {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: var(--sub-txt-color);
  margin-left: 5px;
}

.input-grid .item .area-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-grid .item .area-box .add {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-grid .item .area-box .area-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-grid .expl-box {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #f1f1f1;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.input-grid .expl-box b {
  font-weight: 700;
}

.input-grid .expl-box img {
  width: 14px;
  padding-bottom: 2px;
}

/* Input 포커스 시 라벨 Upper */
.input-box .label-upper-input-s {
  height: 50px;
  line-height: 50px;
}
.input-box .label-upper-input {
  height: 60px !important;
  line-height: 60px !important;
}
.input-box .label-upper-input-s.focus,
.input-box .label-upper-input.focus {
  font-size: 15px;
  padding-top: 20px !important;
  line-height: 20px !important;
}

.input-box .input-label {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 0.875rem;
  color: #9ca3af;
  opacity: 0.7;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.input-box .input-label.focus {
  top: 14px;
  font-size: 0.75rem;
}

/*메인*/
.matching-area {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.matching-area .grid-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matching-area .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.matching-area .tit-box .tit {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-color);
}

.matching-area .tit-box > a {
  background-color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-txt-color);
  padding: 8px 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.matching-area .tit-box > a img {
  height: 10px;
}

.matching-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.matching-grid .item {
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  transition: all 0.4s ease-in-out;
}

.matching-grid .item:hover {
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-animation: wobble-hor-bottom 0.8s both;
  animation: wobble-hor-bottom 0.8s both;
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

.category {
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  display: inline-block;
  width: max-content;
  text-align: center;
}

.category.rental {
  background-color: #ffe9ae;
  color: #ff5900;
}

.category.new {
  background-color: #ffaec5;
  color: #ad0407;
}

.category.sell {
  background-color: #d0fff2;
  color: #059276;
}

.category.notice {
  background-color: #f1f1f1;
  color: black;
}

.matching-grid .item .tit {
  font-weight: 600;
  color: var(--black-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.matching-grid .item .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.matching-grid .item .info span {
  width: calc(50% - 5px);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.matching-grid .item .profit {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.matching-grid .item .profit div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.matching-grid .item .profit div span {
  width: calc(100% - 5px);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.matching-grid .item .profit div span:first-child {
  color: #0089ff;
}

.btn-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-grid .item {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.quick-grid .item:first-child {
  grid-column: auto / span 2;
}

.quick-grid .item .tit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quick-grid .item .tit span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
  word-break: keep-all;
}

.quick-grid .item .tit span:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--black-color);
}

.quick-grid .item .tit span:nth-child(2) img {
  height: 10px;
}

.quick-grid .item .img-box {
  width: 100%;
  height: 100%;
  max-width: 70px;
}

.quick-grid .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom-banner {
  /*background-color: #ffeab1;*/
  background-color: #f9f9f9; 
  padding: 50px 0;
  margin-top: 50px;
}

.bottom-banner .wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.bottom-banner .banner-content {
  display: flex;
  flex-direction: column;
}

.bottom-banner .banner-content P:first-child {
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 10px;
}

.bottom-banner .banner-content P:nth-child(2) {
  font-weight: 400;
  color: var(--black-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.bottom-banner .banner-content a {
  width: max-content;
  border: 1px solid var(--black-color);
  border-radius: 8px;
  padding: 7px 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--black-color);
}

.bottom-banner .banner-content a img {
  height: 10px;
}

.bottom-banner .img-box {
  position: absolute;
  bottom: -54px;
  right: 0;
}

.bottom-banner .img-box img {
  width: 100%;
  max-width: 550px;
}

.request-tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0 20px;
}

.request-tit-box .tit {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-color);
}

.request-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--black-color);
  margin: 0 0 80px;
  padding: 36px;
  border-radius: 24px;
  -webkit-animation: bounce-in-top 1.1s both;
  animation: bounce-in-top 1.1s both;
}

@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
    transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.request-area .input-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 150px;
  gap: 10px;
  align-items: center;
}

.request-area .input-box .input-wrapper {
  position: relative;
}

.request-area .input-box input,
.request-area .input-box select {
  background-color: var(--bg-color);
  padding: 0 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  line-height: 50px;
}

.request-area .input-box button {
  width: 100%;
  max-width: 150px;
  height: 52px;
  line-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  padding: 20px;
  background-color: var(--main-color);
  border-radius: 8px;
  border: 1px solid var(--black-color);
}

.request-area .input-box button img {
  height: 12px;
}

.request-area .terms-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.request-area .terms-box input[type='checkbox'] {
  width: 15px;
  height: 15px;
  margin: 0;
}

.request-area .terms-box label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.request-area .terms-box > button {
  color: var(--main-color);
  text-decoration: underline;
}

/*페이지*/
.page-tit {
  font-size: 36px;
  font-weight: 700;
  color: var(--black-color);
  text-align: center;
}

.page-sub-tit {
  font-weight: 700;
  color: var(--sub-txt-color);
  text-align: center;
  margin-top: 12px;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 100px 0 50px;
}

.product-list {
  display: flex;
  flex-direction: column;
  -webkit-animation: fade-in 2.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 2.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.product-list li {
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-list .th {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px;
  background-color: #f1f1f1;
  border-top: 3px solid var(--blue-color);
}

.product-list .th span {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.product-list .th span:first-child {
  width: 100%;
  max-width: 80px;
}

.product-list .th span:nth-child(2) {
  width: 100%;
  max-width: 80px;
}

.product-list .th span:nth-child(3) {
  width: 100%;
  max-width: 70px;
}

.product-list .th span:nth-child(4) {
  width: 100%;
}

.product-list .th span:nth-child(5) {
  width: 100%;
  max-width: 160px;
}

.product-list .th span:nth-child(6) {
  width: 100%;
  max-width: 140px;
}

.product-list ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.product-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 24px;
  transition-duration: 0.5s, 0.5s;
}

.product-list li a:hover {
  background-color: var(--bg-color);
}

.product-list li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  text-align: center;
  word-break: keep-all;
  line-height: 1.3;
}

.product-list li a span button {
  background-color: #fff;
  font-size: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3px 6px;
}

.product-list li a > span:first-child {
  width: 100%;
  max-width: 80px;
  font-size: 12px;
}

.product-list li a > span:nth-child(2) {
  width: 100%;
  max-width: 80px;
  font-size: 13px;
}

.product-list li a > span:nth-child(3) {
  width: 100%;
  max-width: 70px;
  font-size: 13px;
}

.product-list li a > div:nth-child(4) {
  width: 100%;
}

.product-list li a > span:nth-child(5) {
  width: 100%;
  max-width: 160px;
  font-size: 13px;
}

.product-list li a > span:nth-child(5) b {
  font-weight: 500;
  color: #0158a3;
}

.product-list li a > span:nth-child(6) {
  width: 100%;
  max-width: 140px;
  font-size: 13px;
}

.product-list li.th .content {
  width: 100%;
}

.product-list li.empty {
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
}

.product-list li .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.product-list li .content .tit {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-list li .content .info {
  display: inline-block;
  font-size: 13px;
  color: var(--black-color);
}

.product-list li .content .info b {
  font-weight: 500;
  color: #0158a3;
}

/*Pagination*/
.pagination {
  position: relative;
  margin: 48px 0 24px;
}

.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pagination li {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.pagination li.arrow a {
  background-color: var(--main-color);
}

.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: var(--border-color);
}

.pagination li a:not(.arrow):hover {
  color: var(--black-color);
  background-color: var(--main-color);
}

.pagination li.page-on a {
  color: var(--black-color);
  background-color: var(--main-color);
}

.pagination li a img {
  height: 12px;
  object-fit: cover;
}

.view-area {
  display: flex;
  gap: 40px;
  position: relative;
  margin-top: 100px;
  -webkit-animation: fade-in 2.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 2.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.view-area .side-nav {
  width: 100%;
  max-width: 350px;
  height: max-content;
  position: sticky;
  top: 100px;
  left: 0;
  background-color: #fff;
  border-radius: 22px;
  padding: 40px;
  border: solid;
  border-color: var(--blue-color);
  border-width: 2px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  -webkit-animation: bounce-in-bottom 1.1s both;
  animation: bounce-in-bottom 1.1s both;
}

@-webkit-keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-bottom {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.view-area .side-nav.mobile {
  display: none;
  margin-bottom: 50px;
}

.view-area .side-nav ul {
  display: flex;
  flex-direction: column;
}

.view-area .side-nav ul li {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid var(--blue-color);
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

.view-area .side-nav.mobile ul li:last-child {
  border-bottom: none;
  padding: 10px 0 0;
}

.view-area .side-nav ul li:first-child {
  padding: 0 0 10px;
}

.view-area .side-nav ul li span {
  display: inline-block;
  font-size: 14px;
  color: var(--black-color);
}

.view-area .side-nav ul li span:first-child {
  color: var(--sub-txt-color);
  line-height: 1.3;
  white-space: nowrap;
  min-width: 80px;
}

.view-area .side-nav ul li span:nth-child(2) {
  line-height: 1.3;
  word-break: keep-all;
  text-align: left;
}

.view-area .info-area {
  width: 100%;
}

.info-area .hd {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.info-area .hd .user-type {
  width: max-content;
  /*width: 80px;*/
  /*background-color: var(--main-color);*/
  background-color: #d1e2ff;
  padding: 20px;
  border-radius: 8px;
  color: var(--black-color);
}

.info-area .hd .tit-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-area .hd .tit-box > p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.info-area .hd .tit-box > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-area .hd .tit-box > div span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.info-area .hd .tit-box > div span img {
  height: 14px;
}

.info-area .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-bottom: 50px;
  margin: 50px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-area .info-grid .item {
  display: flex;
  flex-direction: column;
  background-color: #eef3fc;
  /*background-color: #fff;*/
}

.info-area .info-grid .item > div {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

.info-area .info-grid .item > div:not(:last-child) {
  /*border-bottom: 1px solid var(--border-color);*/
  border-bottom: 1px solid var(--border-color);
}

.info-area .info-grid .item > div > span {
  display: inline-block;
  min-width: 70px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--sub-txt-color);
}

.info-area .info-grid .item > div > div {
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 5px;
  word-break: keep-all;
}

.info-area .detail-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
}

.info-area .detail-content > p {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.info-area .build-info {
  background-color: #fff;
  padding: 40px;
  margin: 50px 0;
  border-radius: 16px;
}

.info-area .build-info > p {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.build-list {
  display: flex;
  flex-direction: column;
}

.build-list .item {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.build-list .item .box {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.build-list .item .box span {
  display: inline-block;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
  word-break: keep-all;
}

.build-list .item .box span:first-child {
  color: #0158a3;
  white-space: nowrap;
  min-width: 110px;
}

.info-area .warning-box {
  background-color: #efefef;
  /*background-color: #fff;*/
  padding: 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 75px;
}

.info-area .warning-box img {
  width: 38px;
}

.info-area .warning-box .txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-area .warning-box .txt p:first-child {
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
}

.info-area .warning-box .txt p:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
  line-height: 1.3;
}

.support-list {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.support-list li {
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-list .th {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px;
  background-color: #f1f1f1;
  border-top: 3px solid var(--blue-color);
}

.support-list .th span {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.support-list .th span:first-child {
  min-width: 80px;
}

.support-list .th span:nth-child(2) {
  width: 100%;
}

.support-list .th span:nth-child(3) {
  min-width: 160px;
}

.support-list .th span:nth-child(4) {
  min-width: 70px;
}

.support-list ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.support-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 24px;
}

.support-list li a:hover {
  background-color: var(--bg-color);
}

.support-list li a span {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  word-break: keep-all;
  line-height: 1.3;
}

.support-list li a > span:first-child {
  min-width: 80px;
  font-size: 12px;
}

.support-list li a > div:nth-child(2) {
  width: 100%;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.support-list li a > span:nth-child(3) {
  min-width: 160px;
  font-size: 13px;
}

.support-list li a > span:nth-child(3) b {
  font-weight: 500;
  color: #0158a3;
}

.support-list li a > span:nth-child(4) {
  min-width: 70px;
  font-size: 13px;
}

.support-list li.th .content {
  width: 100%;
}

.support-list li.empty {
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
}

.support-area {
  margin-top: 100px;
  border-radius: 16px;
  overflow: hidden;
}

.support-area .tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fffdf3;
  padding: 30px 50px;
  border-bottom: 1px solid var(--border-color);
}

.support-area .tit-box span {
  font-weight: 500;
  color: var(--sub-txt-color);
}

.support-area .tit-box > span:not(:nth-child(2)) {
  white-space: nowrap;
}

.support-area .tit-box > span:nth-child(2) {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.3;
}

.support-area .tit-box .info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-area .tit-box .info span {
  font-size: 14px !important;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.support-area .tit-box .info span:first-child::after {
  content: '';
  display: inline-block;
  height: 12px;
  width: 1px;
  background: var(--border-color);
  margin-left: 12px;
}

.support-area .editor-area {
  background-color: #fff;
  padding: 70px 50px;
}

.editor-area {
  line-height: 0.7;
}

.editor-area pre {
  line-height: 1.2;
  white-space: pre-line;
  word-break: break-all;
}

.editor-area pre br {
  content: '';
}

.pv-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 50px;
  position: relative;
}

.pv-area > a {
  width: 100%;
  height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}

.pv-area > a:hover {
  opacity: 0.7;
}

.pv-area .pv-btn {
  background-color: #fff;
  padding: 0 50px;
  max-width: calc((100% - 98px) / 2);
}

.pv-area .pv-btn p:first-child {
  font-weight: 600;
  color: var(--black-color);
}

.pv-area .pv-btn p:nth-child(2) {
  font-weight: 400;
  color: var(--sub-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.pv-area .list-btn {
  background-color: var(--main-color);
  width: 78px;
  min-width: 78px;
  height: 78px;
  line-height: 78px;
  position: relative;
  white-space: nowrap;
  font-weight: 600;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mypage-area {
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 16px;
}

.mypage-area .form-area {
  max-width: 100%;
  padding: 48px;
  border-left: 1px solid var(--border-color);
  margin-left: -1px;
}

.mypage-area .form-area.pb-100 {
  padding-bottom: 100px;
}

.mypage-area .form-area .user-box {
  padding: 0;
}

.mypage-area .side-nav {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
  max-width: 350px;
  background-color: #fff;
  border-radius: 16px 0 0 0;
  border-right: 1px solid var(--border-color);
}

.mypage-area .side-nav .type {
  padding: 48px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mypage-area .side-nav .side-list .item {
  padding: 48px;
}

.mypage-area .side-nav .type span:first-child {
  display: block;
  background-color: var(--main-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  border-radius: 30px;
  padding: 7px 16px;
  width: max-content;
  margin-bottom: 15px;
}

.mypage-area .side-nav .type span:nth-child(2) {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--black-color);
  margin-bottom: 15px;
}

.mypage-area .side-nav .type span:nth-child(2) b {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
}

.mypage-area .side-nav .type > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub-txt-color);
  text-decoration: underline;
}

.side-list {
  display: flex;
  flex-direction: column;
}

.side-list .item {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-list .item:last-child {
  border-bottom: none;
  padding: 30px 0 0;
}

.side-list .item > p {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 10px;
}

.side-list .item > a {
  font-size: 16px;
  color: var(--sub-txt-color);
  transition-duration: 0.4s, 0.4s;
}

.side-list .item > a:hover {
  opacity: 0.5;
}

.side-list .item > a.on {
  font-weight: 600;
  color: var(--main-color);
}

.form-area {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.form-area.mw-900 {
  max-width: 900px;
}

.form-tit {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--black-color);
}

.request-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 20px;
  margin-top: 100px;

  @media (max-width: 767px) {
    display: flex;
    flex-direction: column;
  }
}

.request-box .img-box {
  height: 100%;
}

.request-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-animation: bounce-top 0.9s both;
  animation: bounce-top 0.9s both;
}

@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
.request-box .content-box {
  display: grid;
  gap: 20px;
  width: 100%;

  @media (max-width: 767px) {
    grid-template-rows: 1fr;
  }
}

.request-box .content-box .info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px;

  @media (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

.request-box .content-box .info-box .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.request-box .content-box .info-box .info-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #e8e4fa;
  border-radius: 50%;
  flex-shrink: 0;
}

.request-box .content-box .info-box .info-item i {
  font-size: 24px;
  color: var(--sub-txt-color);
}

.request-box .content-box .info-box .info-content {
  flex: 1;
}

.request-box .content-box .info-box .info-content .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-txt-color);
  margin-bottom: 4px;
}

.request-box .content-box .info-box .info-content .value {
  font-size: 14px;
  color: var(--sub-txt-color);
  word-break: keep-all;
}

.request-box .terms-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.request-box .terms-box input[type='checkbox'] {
  width: 15px;
  height: 15px;
  margin: 0;
}

.request-box .terms-box label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  cursor: pointer;
}

.request-box .terms-box > button {
  color: var(--main-color);
  text-decoration: underline;
}

.step-area {
  width: 100%;
  max-width: 600px;
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.step-area button {
  width: 100%;
  max-width: 120px;
  background-color: var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--sub-txt-color);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.step-area button.on {
  background-color: var(--main-color);
  color: var(--black-color);
}

.step-area button::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.step-area button .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-area button p:first-child {
  font-weight: 500;
}

.step-area button p:nth-child(2) {
  font-size: 22px;
  font-weight: 600;
}

.step-area .divider {
  content: '';
  height: 2px;
  width: 100%;
  background-color: var(--border-color);
}

.step-area .divider.on {
  background-color: var(--main-color);
}

.input-flex .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-flex .box > p {
  font-size: 14px;
  color: var(--black-color);
}

.input-flex .box > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-flex .box > div button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.input-flex .box > div button img {
  width: 30px;
}

.input-flex .box > div > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.input-flex .box > div > div input {
  padding-right: 50px;
}

.input-flex .box > div > div span {
  display: block;
  position: absolute;
  right: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
}

.filebox .upload-name {
  padding: 0 20px;
  height: 45px;
  line-height: 45px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
}

.filebox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--bg-color) !important;
}

.filebox label img {
  width: 15px;
}

.filebox input[type='file'] {
  display: none;
  padding: 0;
  overflow: hidden;
  border: 0;
}

#step_sec,
#step_thi {
  display: none;
}

.file-list {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
}

.file-list .file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  border-radius: 8px;
}

.file-list .file-item a {
  font-size: 14px;
}

.file-list .file-item button {
  font-size: 12px;
  background-color: #da1111;
  color: #fff;
  padding: 2px 4px;
  border-radius: 2px;
}

.warning {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warning span {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #cf3535;
  line-height: 1.2;
}

.warning span img {
  height: 16px;
}

.trade-sec {
  display: none;
}

.trade-thi {
  display: none;
}

#addArea {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#addArea > p {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  background-color: var(--bg-color);
}

.tab {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  border-bottom: 1px solid #eee;
}

.tab button {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--sub-txt-color);
  padding-bottom: 16px;
}

.tab button.on {
  color: #000;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--main-color);
}

.find-grid {
  display: none;
}

.user-box:has(.tab .find-id.on) .find01 {
  display: grid;
}

.user-box:has(.tab .find-pw.on) .find02 {
  display: grid;
}

.support-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 95px;
  border-radius: 18px 18px 0px 0px;
  padding: 16px 8px;
  box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  background-color: #fff;
  display: none;
}

.support-fixed > a,
.support-fixed > button {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--main-color);
  position: relative;
  z-index: 2;
}
