@charset "utf-8";

@import url("/static/css/reset.css");
@import url("/static/css/animation.css");
@import url("/static/css/main.css");
@import url("/static/fonts/pretendard.css");
@import url("/static/fonts/pretendard-subset.css");
@import url("/static/css/swiper.min.css");

html,
body {
  font-family: "Pretendard", sans-serif;
  font-weight: normal;
  color: #000;
  text-align: left;
  word-break: keep-all;
}
body {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
}

select,
input {
  font-family: "Pretendard", sans-serif;
  font-weight: normal;
  color: #585858;
  font-size: inherit;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radkus: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input,
button {
  font-family: "Pretendard", sans-serif;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radkus: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
}
button * {
  color: inherit;
}
textarea {
  padding: 10px 15px;
  font-family: "Pretendard", sans-serif;
  font-size: inherit;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radkus: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  resize: none;
  outline: none;
  color: #585858;
  background-color: #f0f0f1;
}
a {
  cursor: pointer;
}

/* blind */
.blind {
  height: 0;
  width: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/* input */
input[type="text"],
input[type="password"] {
  font-family: "Pretendard", sans-serif;
  border: 1px solid #cecece;
  color: #363636;
  font-size: 14px;
  letter-spacing: -0.75px;
  padding: 10px 15px;
  box-sizing: border-box;
  height: 44px;
}
input::placeholder {
  font-family: "Pretendard", sans-serif;
  color: #c3c3c3;
}
input[type="text"].transparent {
  border: none;
}
input[type="text"].center {
  text-align: center;
}

/* input - text */
input[type="text"] {
  background-color: #f0f0f1;
  border: 0;
}

/* checkbox */
input[type="checkbox"] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  left: -9999px;
  outline: 0;
}
input[type="checkbox"] + label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  cursor: pointer;
  background: url(/static/images/icon/checkbox_chk_off.png) no-repeat center left;
  background-size: cover;
}
input[type="checkbox"] + label span {
  font-size: 15px;
  font-weight: 500;
  color: #585858;
  vertical-align: middle;
}
input[type="checkbox"]:checked + label:before {
  background-image: url(/static/images/icon/checkbox_chk_on.png);
}
input[type="checkbox"]:checked + label span {
  color: #363636;
}

/* radio */
input[type="radio"] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  left: -9999px;
  outline: 0;
}
input[type="radio"] + label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  cursor: pointer;
  background: url(/static/images/icon/checkbox_chk_off.png) no-repeat center left;
  background-size: cover;
}
input[type="radio"] + label span {
  font-size: 15px;
  font-weight: 500;
  color: #585858;
  vertical-align: middle;
}
input[type="radio"]:checked + label:before {
  background-image: url(/static/images/icon/checkbox_chk_on.png);
}
input[type="radio"]:checked + label span {
  color: #363636;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 3px;
  background-color: #ccc;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #545454;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.only-mo {
  display: none;
}
.only-pc {
  display: block;
}

/* inner */
.inner {
  width: 1615px;
  margin: 0 auto;
}

/* header */
header {
  position: fixed;
  width: 100%;
  height: 95px;
  z-index: 1;
}
header.color:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  backdrop-filter: blur(2px);
  z-index: -1;
}
header.color .header-logo {
  background-image: url("/static/images/logo/bio-color.png");
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-logo {
  display: inline-block;
  width: calc(447px / 2);
  height: calc(92px / 2);
  background-image: url("/static/images/logo/bio.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* footer */
footer {
  width: 100%;
  padding: 44px 0;
  background-color: #363636;
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 160px auto;
  grid-column-gap: 60px;
  grid-row-gap: 13px;
  width: 1615px;
  margin: 0 auto;
  color: #fff;
  letter-spacing: -0.75px;
}
.footer-logo {
  grid-row-start: 1;
  grid-row-end: 3;
  width: 152px;
  height: 45px;
  object-fit: contain;
}
footer address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.footer-note {
  display: flex;
  justify-content: space-between;
}
.footer-note p:last-of-type {
  font-size: 12px;
}

/* round-button */
.round-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  color: #fff;
  letter-spacing: -0.75px;
  border-radius: 30px;
  border: 1px solid #fff;
}
.round-button a {
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.75px;
}
.round-button a:hover {
  filter: brightness(0.8);
}
.round-button a:nth-of-type(1) {
  margin-right: 5px;
}
.round-button a:nth-of-type(2) {
  margin-left: 5px;
}

.color .round-button {
  color: #414141;
  border-color: #414141;
}
.color .round-button a:hover {
  filter: brightness(2);
}
.color .round-button a {
  color: #414141;
}

.content-wrap {
  min-height: 100vh;
  padding: 95px 0;
}
.content-wrap .inner {
  width: 1180px;
}
.sub-title {
  margin-top: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.75px;
  color: #363636;
}
.sub-title.customer {
  margin-bottom: 45px;
}

.multi-check {
  display: flex;
  align-items: center;
  gap: 35px;
}

.tab-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 0 25px 0;
  font-weight: 300;
  letter-spacing: -0.75px;
}
.tab-list li:hover {
  filter: brightness(2);
}
.tab-list li.on {
  font-weight: 800;
}
.tab-list li:not(:last-of-type) {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 11px;
  margin-right: 10px;
}
.tab-list li:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 15px;
  background: #363636;
}

.line-table {
  table-layout: fixed;
  letter-spacing: -0.75px;
}
.line-table.write col:nth-of-type(1) {
  width: 220px;
}
.line-table.write td.full textarea {
  height: 180px;
}
.line-table.write td.half input {
  width: 520px;
}
.line-table.write td.phone input {
  width: 163px;
}
.line-table.write td.phone div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.check-all {
  margin-top: 25px;
  padding: 13px 0;
  background-color: #363636;
  text-align: center;
}
.check-all input[type="checkbox"] + label:before {
  background-image: url("/static/images/icon/checkbox_chk_white_off.png");
}
.check-all input[type="checkbox"]:checked + label:before {
  background-image: url("/static/images/icon/checkbox_chk_white_on.png");
}
.check-all input[type="checkbox"] + label span {
  font-size: 20px;
  color: #fff;
}
.line-table .check-td {
  border-bottom: 0 !important;
}
.line-table .check-td td {
  background-color: #f0f0f1;
  color: #363636;
}
.line-table .check-td td input[type="checkbox"] + label span {
  font-size: 20px;
}
.line-table tr:first-of-type {
  border-top: 2px solid #505050;
}
.line-table tr:last-of-type {
  border-bottom: 2px solid #505050;
}
.line-table tr:last-of-type td {
  border-bottom: 0;
}
.line-table tr:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.line-table.write th {
  line-height: 44px;
}
.line-table th {
  padding: 15px 20px;
  color: #363636;
  font-weight: 600;
  font-size: 18px;
  box-sizing: border-box;
  vertical-align: baseline;
}
.line-table td {
  padding: 13px 20px;
  text-align: center;
  font-weight: 300;
  line-height: 19px;
  box-sizing: border-box;
  color: #363636;
}
.line-table th.left,
.line-table td.left {
  text-align: left;
}
.line-table th.right,
.line-table td.right {
  text-align: right;
}
.line-table td a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  max-width: calc(100% - 55px);
  line-height: 23px;
}
.line-table .new {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-table-title:after,
.line-table .new:after {
  content: "NEW";
  display: inline-block;
  padding: 2px 5px;
  background-color: #3b3b3b;
  font-size: 12px;
  color: #fff;
  letter-spacing: -0.25px;
}
.line-table.list col:nth-of-type(1) {
  width: calc(100% - 300px);
}
.line-table.list col:nth-of-type(2),
.line-table.list col:nth-of-type(3) {
  width: 150px;
}
.line-table.privacy col:nth-of-type(1) {
  width: 400px;
}
.line-table.privacy col:nth-of-type(2) {
  width: auto;
}
.line-table.privacy th {
  vertical-align: middle;
}
.table-desc {
  margin-top: 20px;
  font-weight: 300;
  font-size: 15px;
  color: #363636;
  letter-spacing: -0.75px;
}
.table-desc.center {
  text-align: center;
}
.line-table-title {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 23px;
  letter-spacing: -0.75px;
  color: #363636;
}
.privacy-sub {
  font-size: 14px;
  letter-spacing: -0.75px;
}

/* paging */
.table-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 25px;
}
.table-footer-wrap .paging-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.table-footer-wrap .paging-area a {
  min-width: 16px;
  text-align: center;
}
.table-footer-wrap .paging-area a.active {
  font-weight: 700;
}
.table-footer-wrap .paging-area a:hover {
  filter: brightness(5);
}
.table-footer-wrap .paging-area a.end:hover {
  filter: brightness(3);
}
.table-footer-wrap .end {
  display: inline-block;
  width: 13px;
  height: 10px;
  background-image: url("/static/images/icon/page-next.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.search-area {
  display: flex;
  align-items: center;
  width: 200px;
  margin-left: 30px;
  border-bottom: 2px solid #e9e9e9;
}
.search-area input[type="text"] {
  height: auto;
  border: 0;
  text-align: center;
  background-color: transparent;
}
.btn-search {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/static/images/icon/search.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.detail-table-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 25px 20px;
  margin-top: 55px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.75px;
}
.detail-table col:nth-of-type(1) {
  width: auto;
}
.detail-table col:nth-of-type(2) {
  width: 120px;
}
.detail-table tr:first-of-type {
  border-top: 2px solid #505050;
  border-bottom: 1px solid #ddd;
}
.detail-table tr:first-of-type td:nth-of-type(1) {
  color: #585858;
}
.detail-table td {
  padding: 15px 20px;
  font-size: 16px;
  letter-spacing: -0.75px;
}
.detail-table .name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #585858;
}
.detail-table .name dt {
  font-weight: 400;
}
.detail-table .name dd {
  font-weight: 600;
}
.detail-table .date {
  font-weight: 500;
  color: #585858;
}
.detail-table td:only-of-type {
  padding: 20px;
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
}
.btn-wrap > a,
.btn-wrap > button {
  padding: 15px 0;
  min-width: 230px;
}
.btn-wrap .btn {
  font-size: 20px;
  letter-spacing: -0.75px;
}
.btn-wrap .btn.btn-bg:hover {
  filter: brightness(1.5);
}
.btn.btn-line:hover {
  background-color: #f8f8f8;
}
.btn-wrap .btn.btn-bg {
  background-color: #363636;
  color: #fff;
}
.btn-wrap .btn.btn-line {
  border: 1px solid #363636;
  color: #363636;
}

@media screen and (max-width: 1615px) {
  /* inner */
  .inner,
  .content-wrap .inner,
  .footer-inner {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1024px) {
  .only-mo {
    display: block;
  }
  .only-pc {
    display: none;
  }

  /* header */
  header {
    height: auto;
    padding: 10px 0;
  }
  header.color:after {
    height: 43px;
  }
  .header-logo {
    width: calc(447px / 4);
    height: calc(92px / 4);
  }

  .content-wrap {
    padding: 45px 0;
  }

  /* footer */
  footer {
    padding: 35px 0;
  }
  .footer-inner {
    padding: 0 10px;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
  footer address {
    justify-content: space-between;
    gap: 5px;
    font-size: 9px;
  }
  footer address p {
    word-break: break-all;
    color: #fff;
  }
  footer .footer-logo {
    width: 76px;
    height: auto;
  }
  .footer-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-note p:first-of-type {
    font-size: 9px;
  }
  .footer-note p:last-of-type {
    font-size: 8px;
  }

  /* radio */
  input[type="checkbox"] + label {
    gap: 6px;
  }
  input[type="checkbox"] + label span {
    font-size: 8px;
  }
  input[type="checkbox"] + label:before {
    width: 10px;
    height: 10px;
  }
  input[type="text"],
  input[type="password"] {
    padding: 5px 10px;
    height: 25px;
    font-size: 8px;
  }
  .line-table .check-td td input[type="checkbox"] + label span {
    font-size: 10px;
  }

  /* round-button */
  .round-button {
    padding: 0 15px;
    border-radius: 5px;
  }
  .round-button a {
    font-size: 8px;
  }

  /* inner */
  .inner {
    padding: 0 10px;
  }

  .sub-title {
    font-size: 18px;
  }

  .line-table.list col:nth-of-type(1) {
    width: auto;
  }
  .line-table.list col:nth-of-type(2) {
    width: 65px;
  }
  .line-table.list col:nth-of-type(3) {
    width: 55px;
  }
  .line-table td {
    padding: 10px 7px;
    font-size: 10px;
  }
  .line-table td a {
    line-height: 1;
  }
  .tab-list {
    margin-bottom: 10px;
  }
  .tab-list li {
    font-size: 8px;
  }
  .tab-list li:not(:last-of-type):after {
    height: 10px;
  }
  .line-table tr:first-of-type,
  .line-table tr:last-of-type {
    border-width: 1px;
  }
  .detail-table-title:after,
  .line-table .new:after {
    font-size: 7px;
    line-height: 1;
  }

  .table-footer-wrap {
    flex-direction: column;
    gap: 10px;
  }
  .table-footer-wrap .paging-area {
    gap: 15px;
  }
  .table-footer-wrap .paging-area a {
    min-width: auto;
    font-size: 10px;
  }
  .table-footer-wrap .paging-area a {
    background-size: 10px;
  }

  .search-area {
    width: auto;
    margin-left: 0;
  }
  .btn-search {
    background-size: 80%;
  }
  .search-area input[type="text"] {
    font-size: 10px;
  }

  .detail-table-title {
    gap: 5px;
    padding: 0 0 10px 10px;
    margin-top: 25px;
    font-size: 10px;
  }
  .detail-table col:nth-of-type(2) {
    width: 60px;
    text-align: right;
  }
  .detail-table tr:first-of-type {
    border-width: 1px;
  }
  .detail-table td {
    padding: 7px 10px;
    font-size: 10px;
  }
  .detail-table td:only-of-type {
    padding: 10px;
  }
  .line-table th,
  .line-table td {
    line-height: 1.5;
  }
  .line-table.write col:nth-of-type(1) {
    width: 20%;
  }
  .line-table.privacy col:nth-of-type(1) {
    width: 30%;
  }
  .line-table.privacy col:nth-of-type(2) {
    width: auto;
  }
  .line-table.marketing col:nth-of-type(1),
  .line-table.marketing col:nth-of-type(2),
  .line-table.marketing col:nth-of-type(3) {
    width: calc(100% / 3);
  }
  .line-table.write td.half input,
  .line-table.write td.phone input {
    width: 100%;
  }
  .btn-wrap > a,
  .btn-wrap > button {
    min-width: auto;
  }
  .line-table th {
    padding: 10px 7px;
    font-size: 10px;
  }
  .line-table.write th {
    line-height: 25px;
  }
  .sub-title.customer {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .table-desc {
    margin-top: 10px;
    font-size: 8px;
  }
  .line-table-title {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .privacy-sub {
    font-size: 8px;
  }
  .btn-wrap {
    gap: 10px;
    margin-top: 25px;
  }
  .btn-wrap .btn {
    width: 100%;
    padding: 7px 0;
    font-size: 10px;
  }
  .check-all {
    padding: 10px 7px;
  }
  .check-all input[type="checkbox"] + label span {
    font-size: 10px;
  }
  .line-table.write td.full textarea {
    height: 95px;
  }
}
