@charset "utf-8";

/* ---------- default ----------- */
/* variable */
:root {
  --color--primary: #0aa4b4;
  --color--primary2: #09408a;
  --color--point: #80c85d;
  --color--sub: #f5f7fa;
  --color--black: #333333;
  --color--black2: #424242;
  --color--D-gray: #838383;
  --color--gray: #e5e5e5;
  --color--L-gray: #f8f8f8;

  --font--Rubik: "Rubik", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", "dotum", "돋움", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --header--height: 80px;
}

/* font */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
cite,
code,
del,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
time,
mark,
audio,
video,
button,
textarea,
input,
select {
  font-family: "SUIT", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", "dotum", "돋움", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  color: var(--color--black2);
}
body.fixed {
  overflow: hidden;
}

/* etc */
.screen-out {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 1px;
  clip-path: polygon(0 0, 0 0, 0 0);
}
.button__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}
.button__wrap.jc-right {
  justify-content: right;
}
.button__wrap.column {
  flex-direction: column;
  row-gap: 16px;
}
.p_br {
  display: block;
}
.m_br {
  display: inline;
  padding: 0 0.11em;
}
.m_br.none {
  display: none;
}
.req-star {
  color: var(--color--point);
}

/* btn */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-radius {
  width: 120px;
  height: 48px;
  border: 1px solid var(--color--primary);
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color--primary);
}

.btn-radius.line-gray {
  border-color: var(--color--gray);
  color: var(--color--D-gray);
  background-color: #fff;
  font-weight: 400;
}
.btn-radius.line-blue {
  border-color: var(--color--primary2);
  color: var(--color--primary2);
  background-color: #fff;
}
.btn-radius.color-black {
  background-color: #313131;
}
.btn-radius.color-blue {
  background-color: #0577d7 !important;
  color: #fff !important;
}
.btn-radius.btn-l {
  width: 100%;
  max-width: 500px;
  height: 64px;
  font-size: 18px;
  line-height: 22px;
}
.btn-more {
  width: fit-content;
  position: relative;
  column-gap: 5px;
  padding: 14px 16px 14px 22px;
}
.btn-more > * {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.btn-more::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/_img/common/icon_more.svg) no-repeat center center/contain;
}
.btn-text {
  font-size: 16px;
  line-height: 20px;
  color: var(--color--D-gray);
  text-decoration: underline;
}
.btn-download {
  width: 276px;
  height: 52px;
  column-gap: 8px;
  border: 1px solid var(--color--primary);
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color--primary2);
}
.btn-download::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/_img/common/icon_download.svg) no-repeat center center/contain;
}

/* input */
.common-input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--color--gray);
  border-radius: 12px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--color--D-gray);
}
.common-input::placeholder {
  color: #d5d5d5;
}
.common-input:focus {
  border-color: var(--color--primary);
}
.common-input.unit-input {
  max-width: 400px;
}
.common-input.bg-readonly:read-only {
  background-color: #f8f8f8;
}

.common-textarea {
  display: block;
  width: 100%;
  height: 200px;
  border: 1px solid var(--color--gray);
  border-radius: 12px;
  padding: 20px;
  font-size: 16px;
  line-height: 20px;
  color: var(--color--D-gray);
  background-color: #f8f8f8;
  resize: none;
}
.common-textarea::placeholder {
  color: #d5d5d5;
}
.common-textarea::-webkit-scrollbar {
  width: 14px;
}
.common-textarea::-webkit-scrollbar-thumb {
  background-color: #838383;
  border-radius: 14px;
}
.common-textarea::-webkit-scrollbar-track {
  border-radius: 14px;
  background-color: transparent;
}

/* checkbox, radio */
.checkbox__box,
.radio__box {
  display: flex;
  align-items: center;
}
.checkbox__label {
  display: flex;
  padding-left: 2.5px;
  column-gap: 6.5px;
  cursor: pointer;
}
.checkbox__label > span {
  font-size: 16px;
  line-height: 20px;
}
.checkbox__label .text-point {
  color: var(--color--point);
}
.checkbox__label .text-gray {
  color: var(--color--D-gray);
}
.common-checkbox,
.table-radio {
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-top: 2.5px;
  border: 1px solid #838383;
  border-radius: 3px;
  cursor: pointer;
}
.common-checkbox:checked,
.table-radio:checked {
  border-color: #fff;
  background: url(/_img/common/icon_check.svg) no-repeat center center/9px var(--color--primary2);
}
.circle-checkbox {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color--D-gray);
  border-radius: 50%;
  cursor: pointer;
}
.circle-checkbox:checked {
  background-color: var(--color--D-gray);
  box-shadow: inset 0 0 0 1px #fff;
}
.join__wrap .common-checkbox:checked {
  border-color: #fff;
  background-color: #f7941c;
}
.table-checkbox__label,
.table-radio__label {
  padding: 10px;
  cursor: pointer;
}
.radio__box {
  column-gap: 32px;
}
.radio__label {
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.radio__label > span {
  font-size: 16px;
  color: #838383;
}
.common-radio {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color--D-gray);
  border-radius: 50%;
  cursor: pointer;
}
.common-radio:checked {
  background-color: var(--color--D-gray);
  box-shadow: inset 0 0 0 1px #fff;
}
.radio-readonly {
  opacity: 0.5;
  pointer-events: none; /* 클릭 방지 */
}
/* select */
.common-select {
  float: none;
  width: 80px;
  height: 48px;
  line-height: 46px;
  padding-left: 12px;
  padding-right: 30px;
  border-radius: 8px;
  border-color: var(--color--gray);
}
.modal-layer .search__area.mo_column {
  flex-wrap: wrap;
  gap: 8px;
}
.common-select.w160 {
  width: 140px;
  min-width: 140px;
}
.error .common-select {
  border-color: #f7941c;
}
.error .common-select .current {
  color: #f7941c;
}
.common-select::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: none;
  background: url(/_img/common/icon_arrow_down.svg) no-repeat center center / contain;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.3s;
}
.common-select.open::after {
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.common-select .current {
  color: var(--color--D-gray);
}
.common-select .list {
  overflow-y: auto;
  width: 100%;
  max-height: 200px;
}
.common-select .option {
  padding: 0 12px;
}

/* modal */
.modal-layer {
  display: none;
  width: 100%;
  height: 100%;
  min-height: -webkit-fill-available;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.4);
}
.modal-layer.on {
  display: block;
}
.modal-layer__window {
  overflow-y: auto;
  background-color: #fff;
  width: calc(100% - 40px);
  max-width: 800px;
  max-height: calc(100dvh - 100px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  padding: 48px 44px 40px;
}
.modal__header {
  position: relative;
  margin-bottom: 32px;
}
.modal__title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}
.modal__sub-title {
  margin-top: 8px;
  font-size: 12px;
  line-height: 15px;
  color: var(--color--point);
  text-align: center;
}
.modal__header .btn-modal-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -20px;
  top: -20px;
}
.modal__header .btn-modal-close::after {
  content: "×";
  display: block;
  font-size: 20px;
  line-height: 20px;
}
.modal__text {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.modal__content .button__wrap {
  margin-top: 48px;
  column-gap: 16px;
}
.modal__content .button__wrap .btn-radius {
  width: 80px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.modal-layer .search__area {
  margin-bottom: 32px;
}
.modal-layer .search__area .common-input {
  height: 60px;
  border-radius: 12px;
}
.modal-layer .btn-search {
  height: 60px;
  border: 1px solid var(--color--gray);
  border-radius: 12px;
  background-color: #f8f8f8;
  font-weight: 600;
  color: var(--color--D-gray);
}
.modal-layer .row-table thead th {
  height: 44px;
  border-top: none;
  font-size: 14px;
  line-height: 17.5px;
  font-weight: 400;
}
.modal-layer .row-table td {
  height: 44px;
  padding: 5px;
  font-size: 14px;
  line-height: 17.5px;
  font-weight: 400;
}
.modal-layer .row-table tbody tr {
  border-bottom: 1px solid var(--color--gray);
}
.modal-layer .row-table tbody tr:nth-child(even) {
  background-color: #fff;
}

/* modal-terms */
.modal-terms .modal-layer__window {
  width: calc(100% - 40px);
  max-width: 660px;
}

/* modal-edit */
.modal-edit .modal-layer__window {
  width: calc(100% - 40px);
  max-width: 520px;
  padding: 48px 50px;
}
.modal-edit .common-input__area {
  align-items: center;
}
.modal-edit.my-info .input__label {
  width: 140px;
}

.modal-edit .email-radio .input__label {
  width: 150px;
}

.modal-edit .common-input__box {
  width: calc(100% - 110px);
}
.modal-edit.my-info .common-input__box {
  width: calc(100% - 140px);
}
.modal-edit .email-radio .common-input__box {
  width: calc(100% - 150px);
}
.modal-edit.my-info .info-text__wrap {
  margin-left: 140px;
}
.modal-edit .modal__content .button__wrap {
  margin-top: 48px;
}
.modal-edit .common-input__box.right {
  margin-left: 110px;
}
.modal-edit.company .modal-layer__window,
.modal-edit.manager .modal-layer__window {
  width: calc(100% - 40px);
  max-width: 800px;
}

.modal-withdrawal .modal-layer__window,
.modal-alert .modal-layer__window {
  max-width: 400px;
}
.modal-alert .modal__text > p {
  display: block;
  font-size: 16px;
  line-height: 20px;
}
.modal-withdrawal .modal__text > em {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.modal-withdrawal .modal__text > p {
  font-size: 12px;
  line-height: 15px;
}

.modal-report .modal-layer__window {
  width: calc(100% - 40px);
  max-width: 480px;
}

/* modal-coupon */
.modal-coupon .checkbox__box {
  margin-top: 8px;
}
.modal-coupon .checkbox__label {
  align-items: center;
}
.modal-coupon .checkbox__label > span {
  color: var(--color--D-gray);
}
.modal-coupon .swiper-slide .table,
.modal-project .swiper-slide .table {
  min-width: 496px;
}
.modal-project .table-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 265px;
  border-bottom: 1px solid var(--color--gray);
}
.modal-project .table-scroll::-webkit-scrollbar {
  width: 8px;
}
.modal-project .row-table thead th {
  position: sticky;
  left: 0;
  top: 0;
}
.modal-project .row-table tbody td {
  border-bottom: 1px solid var(--color--gray);
}
.modal-project .row-table tr:last-child td {
  border-bottom: none;
}

/* table */
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.table th {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  vertical-align: middle;
}
.table td {
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
}
.table td.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.col-table tr:first-child {
  border-top: 1px solid var(--color--gray);
}
.col-table tr {
  border-bottom: 1px solid var(--color--gray);
}
.col-table th {
  height: 60px;
  padding: 10px 16px;
  border-right: 1px solid var(--color--gray);
  background-color: var(--color--L-gray);
}
.col-table td {
  height: 60px;
  padding: 5px 16px;
  border-right: 1px solid var(--color--gray);
  color: var(--color--D-gray);
}
.col-table td:last-child,
.col-table .td:last-child {
  border-right: none;
}

/* div table */
.div-table .row {
  display: flex;
  align-items: center;
}
.div-table .cell {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 5px 16px;
  border-bottom: 1px solid var(--color--gray);
  border-right: 1px solid var(--color--gray);
  font-size: 16px;
  line-height: 20px;
  color: var(--color--D-gray);
}
.div-table .row:first-child .cell {
  border-top: 1px solid var(--color--gray);
}
.div-table .th {
  justify-content: center;
  font-weight: 700;
  background-color: var(--color--L-gray);
  word-break: keep-all;
  text-align: center;
  color: #424242;
}
.col-table .th {
  width: 16%;
}
.col-table .td {
  width: 34%;
}
.col-table .td.colspan-3 {
  width: 84%;
}

.row-table thead th {
  height: 60px;
  border-top: 1px solid var(--color--gray);
  border-bottom: 1px solid var(--color--gray);
  background-color: var(--color--L-gray);
}
.row-table td {
  padding: 19px 10px;
  height: 60px;
  text-align: center;
}
.row-table tbody tr:nth-child(even) {
  background-color: var(--color--L-gray);
}
.row-table tbody tr:last-child {
  border-bottom: 1px solid var(--color--gray);
}

/* pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 43px;
}
.page__list {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin: 0 8px;
}
.page__link > a {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 15px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
}
.page__link.on > a {
  font-weight: 700;
  color: #fff;
  background-color: var(--color--point);
}
.page__button {
  width: 24px;
  height: 24px;
}
.page__button.btn-prev {
  background: url(/_img/common/page_prev.svg) no-repeat center center/contain;
}
.page__button.btn-next {
  background: url(/_img/common/page_next.svg) no-repeat center center/contain;
}
.page__button.btn-first {
  background: url(/_img/common/page_first.svg) no-repeat center center/contain;
}
.page__button.btn-last {
  background: url(/_img/common/page_last.svg) no-repeat center center/contain;
}

@media screen and (max-width: 1024px) {
  .div-table .cell {
    min-height: 48px;
    font-size: 14px;
    line-height: 17.5px;
  }
  .modal__header .btn-modal-close {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p_br {
    display: inline;
    padding: 0 0.11em;
  }
  .m_br,
  .m_br.none {
    display: block;
  }

  .common-input {
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
  }
  .common-textarea {
    height: 240px;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 17.5px;
  }
  .btn-radius {
    height: 44px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 17.5px;
  }
  .btn-radius.btn-l {
    height: 48px;
    font-size: 14px;
  }
  .btn-more {
    column-gap: 15px;
    padding: 13.5px 16px;
  }
  .button__wrap.column {
    row-gap: 8px;
  }
  .checkbox__label > span,
  .radio__label > span {
    font-size: 14px;
    line-height: 20px;
  }
  .btn-text {
    font-size: 14px;
    line-height: 17.5px;
  }
  .btn-download {
    width: 100%;
  }
  .btn-download::after {
    width: 18px;
    height: 18px;
  }

  .modal__header {
    margin-bottom: 24px;
  }
  .modal__title {
    font-size: 16px;
    line-height: 20px;
  }
  .modal__sub-title {
    margin-top: 4px;
  }
  .modal-layer__window {
    padding: 40px 16px;
  }
  .modal-layer .search__area {
    margin-bottom: 24px;
  }

  .modal-layer .search__area.mo_column .common-select {
    width: 100%;
  }
  .modal__content .button__wrap {
    margin-top: 40px;
  }
  .modal__content .button__wrap .btn-radius {
    width: 100%;
    height: 48px;
  }
  .modal-layer .search__area .common-input {
    height: 48px;
    border-radius: 8px;
  }
  .modal-layer .btn-search {
    height: 48px;
    border-radius: 8px;
  }

  .modal-edit .modal-layer__window {
    padding: 40px 16px;
  }
  .modal-edit .common-input__area {
    align-items: flex-start;
  }
  .modal-edit .common-input__box,
  .modal-edit.my-info .common-input__box {
    width: 100%;
  }
  .modal-edit.my-info .info-text__wrap {
    margin-left: 0;
  }
  .modal-edit .join-info__text {
    margin-top: 0;
  }
  .modal-edit .common-input__box.right {
    margin-left: 0;
  }
  .modal-edit .common-input__box .btn-radius {
    min-width: 80px;
    padding: 0 10px;
  }
  .modal-edit .modal__content .button__wrap {
    margin-top: 40px;
  }

  .modal-layer .row-table thead th {
    padding: 5px;
  }
  .modal-project .row-table col:first-child {
    width: 12% !important;
  }
  .modal-project .row-table col:nth-child(2) {
    width: 34% !important;
  }
  .modal-project .row-table col:nth-child(3) {
    width: 34% !important;
  }
  .modal-project .row-table col:nth-child(4) {
    width: 20% !important;
  }
  .modal-project .row-table thead th {
    font-size: 12px;
  }
  .modal-project .row-table tbody td {
    font-size: 12px;
  }
  .modal-project .table-radio__label {
    padding: 5px;
  }
  .modal-project .table-scroll::-webkit-scrollbar {
    width: 4px;
  }

  .modal-report .modal__text {
    font-size: 14px;
    line-height: 17.5px;
  }

  .pagination {
    margin-top: 24px;
  }
  .page__link > a {
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
  }
  .page__button {
    width: 20px;
    height: 20px;
  }
  .div-table.col-table {
    border-top: 1px solid var(--color--gray);
  }
  .div-table .row {
    flex-wrap: wrap;
  }
  .div-table .row:first-child .cell {
    border-top: none;
  }
  .col-table .td:nth-child(even) {
    border-right: none;
  }
  .col-table .th {
    width: 25%;
    padding: 5px 9px;
  }
  .col-table .td {
    width: 75%;
  }
  .col-table .td.colspan-3 {
    width: 75%;
  }

  .row-table thead th {
    height: 37px;
  }
  .row-table th,
  .row-table td {
    height: 37px;
    padding: 10px;
    font-size: 14px;
    line-height: 17.5px;
  }
  .modal-edit.my-info .common-input__box.w100p {
    width: 100%;
  }
  .modal-edit.modal_coupon .modal__content .button__wrap {
    margin-top: 24px;
  }
}
