@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
  font-family: 'Pretendard';
}
body {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  font-family: 'Pretendard';
  overflow: hidden;
}

:root {
  --black00: #242730;
  --black2d: #2d2d2d;
  --black1e: #1E1E1E;
  --black19: #19202D;
  --navy05: #051277;
  --blue00: #001DFF;
  --orangeff: #FF4E13;
  --orangeffd: #FFDDD1;
  --gray2d: #2D2D2D;
  --green32: #32BC16;
  --gray3f: #3F5E72;
  --gray6a: #6A7A85;
  --gray68: #686868;
  --gray69: #696969;
  --gray75: #757575;
  --gray86: #868686;
  --gray8d: #8D8D8D;
  --graya0: #A0A0A0;
  --graya7: #A7A7A7;
  --grayb5: #B5BFC5;
  --grayc8: #C8D6DF;
  --grayd9: #d9d9d9;
  --graydd: #dddddd;
  --graye4: #E4E4E4;
  --grayf0: #F0F1F6;
  --grayf1: #F1F1F1;
  --grayf4: #F4F4F4;
  --grayf47: #F4F7FD;
  --grayf8: #F8F9FB;
  --grayfd: #FDFDFD;
  --white: #fff;
}

/* Reset */
* {
  box-sizing: border-box;
}

/* Reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
nav,
section,
article,
header,
footer,
main,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
legend,
hr,
input,
button,
textarea,
object,
figure,
figcaption,
dialog {
  margin: 0;
  padding: 0;
}

body,
textarea,
button,
img,
fieldset,
dialog {
	border: none;
}

textarea {
  resize: none;
}

ul,
ol,
li {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

address,
cite,
code,
em,
i {
  font-style: normal;
  font-weight: normal;
}

u,
ins,
a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button, input, select, textarea {font-family: 'Pretendard';}

/* Normalize */
input[type=number],
input[type=text],
input[type=password],
input[type=url],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
}
@-moz-document url-prefix() {
  input[type="date"] {
    background: none !important;
  }
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

input[type=date]::before {
  content: attr(data-placeholder);
  width: 100%;
}

input[type=date]:valid::before {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
}

/* Print Media */
@media print {
  .header,
  .footer,
  .visual {
    display: none;
  }
  .page-break {
    page-break-before: always;
  }
}
@page {
  margin: 1cm 2cm;
}
.print {
  display: block;
}

@media screen {
  .print {
    display: none;
  }
}
li {
  list-style: none;
}

/* Flex and Alignment Utility */
.align {
  display: flex;
}

.align.column {
  flex-direction: column;
}

.align.row {
  flex-direction: row;
}

.align.left {
  justify-content: flex-start;
}

.align.right {
  justify-content: flex-end;
}

.align.center {
  justify-content: center;
}

.align.both {
  justify-content: space-between;
}

.align.triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.align.triple > :nth-child(1) {
  justify-self: start;
}

.align.triple > :nth-child(2) {
  justify-self: center;
  white-space: nowrap;
}

.align.triple > :nth-child(3) {
  justify-self: right;
}

.align.vt {
  align-items: flex-start;
}

.align.vm {
  align-items: center;
}

.align.vb {
  align-items: flex-end;
}

.gap10 {
  gap: 10px;
}
.gap14 {
  gap: 14px;
}

caption,
legend,
.a11y-hidden {
  overflow: hidden;
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

a.link {
  text-decoration: underline;
}

.block {
  display: block;
}

@media screen and (max-width: 1300px) {
  .block-mo {
    display: block;
  }
}

.inline {
  display: inline-block;
}

.bg.white {
  background: var(--white);
}
.bg.grayf4 {
  background: var(--grayf4);
}
.bg.grayf47 {
  background: var(--grayf47);
}
.bg.graydd {
  background: var(--graydd);
}
.bg.grayf8 {
  background: var(--grayf8);
}
.bg.grayfd {
  background: var(--grayfd);
}
.bg.orangeff {
  background: var(--orangeff);
}

.radius4 {
  border-radius: 0.4rem;
}

.radius8 {
  border-radius: 0.8rem;
}

.radius16 {
  border-radius: 1.6rem;
}

.main {
  width: 100%;
  min-height: 100vh;
}
#section7 .img-wrap { 
  position: relative;
}
#section7 .img-wrap .desc { 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content {
  position: relative;
  &.response { 
    min-height: 100vh; min-width: 1200px;
  }
}
.response { 
  min-height: 100vh; min-width: 1200px;
}
.mw1200 { 
  min-width: 1200px;
}
.mw700 { 
  min-width: 700px;
}
.mw500 { 
  min-width: 500px;
}

.grid-type1 {
  display: grid;
  grid-template-columns: 31.8rem 1fr;
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .grid-type1 {
    display: block;
  }
}

.grid-type2 {
  display: grid;
  grid-template-columns: 31.8rem 1fr;
  gap: 1.8rem;
}

.grid-type3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .grid-type3 {
    display: block;
  }
  .grid-type3.none {
    display: grid;
  }
}
@media screen and (max-width: 500px) {
  .grid-type3.none {
    display: block;
  }
}

.grid-type4 {
  display: grid;
  grid-template-columns: minmax(auto, 61.4rem) 1fr 1fr;
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .grid-type4 {
    display: block;
  }
}

.grid-type5 {
  display: grid;
  grid-template-columns: 9.1rem 1fr;
  gap: 1.8rem;
}

.grid-type6 {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.8rem;
}

.grid-type7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .grid-type7 {
    display: block;
  }
}

.grid-type8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7rem 2rem;
}
@media screen and (max-width: 1300px) {
  .grid-type8 {
    display: block;
  }
}

.grid-type9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .grid-type9 {
    display: block;
  }
}

.grid-type10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 10.6rem);
}
@media screen and (max-width: 1300px) {
  .grid-type10 {
    display: block;
  }
}

.borderc8 {
  border: 1px solid var(--grayc8);
}
.border-topb5 {
  border-top: 1px solid var(--grayb5);
}

.border-bottomf0 {
  border-bottom: 4px solid var(--grayf0);
}

.border-bottomb5 {
  border-bottom: 1px solid var(--grayb5);
}

.border-bottomc8 {
  border-bottom: 1px solid var(--grayc8);
}

.flex1 {
  flex-grow: 1;
}

.ellipsis01 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1300px) {
  .ellipsis01-mo {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}

.ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.ellipsis03 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fixed-top70 {
  width: 100%;
  position: fixed;
  left: 0;
  top: 7rem;
}

.fixed-bottom0 {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
}

.relative {
  position: relative;
}

.hidden {
  overflow: hidden;
}

.shadow01 {
  box-shadow: 0px 2px 9.9px 0px rgba(0, 0, 0, 0.1), 0px 2px 31.4px 0px rgba(0, 0, 0, 0.1);
}

.visible {
  overflow: visible !important;
}

.border0 {
  border: 0 !important;
}

.hr {
  width: 100%;
  height: 1px;
}
.hr.grayd3 {
  background: var(--grayd3);
}
.border { 
  width: 100%;
  height: 1px;
}
.border.grayf1 { 
  background: var(--grayf1);
}

.scroll-y {
  overflow-y: auto;
  /* 스크롤바 너비 */
  /* 스크롤바 트랙 */
  /* 스크롤바 핸들(thumb) */
  /* 스크롤바 핸들에 마우스를 올렸을 때 */
}
.scroll-y::-webkit-scrollbar {
  width: 5px; /* 가로 스크롤은 height 속성을 사용 */
}
.scroll-y::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* 트랙 색상 */
  border-radius: 10px; /* 둥근 모서리 */
}
.scroll-y::-webkit-scrollbar-thumb {
  background-color: #888; /* 스크롤바 색상 */
  border-radius: 10px; /* 둥근 모서리 */
}
.scroll-y::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* hover 시 더 진한 색상 */
}

.scroll-x {
  overflow-x: auto;
  /* 가로 스크롤바 높이 */
  /* 가로 스크롤바 트랙 */
  /* 가로 스크롤바 핸들(thumb) */
  /* 가로 스크롤바 핸들 hover 시 */
  padding-bottom: 10px;
}
.scroll-x::-webkit-scrollbar {
  height: 8px; /* 가로 스크롤의 높이를 지정 */
}
.scroll-x::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.scroll-x::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}
.scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.radius-bottom {
  border-radius: 0 0 0.8rem 0.8rem;
}

.w70 {
  width: 70%;
}

.w100 {
  width: 100% !important;
}

.h100vh {
  height: 100vh;
}

.mw177 {
  width: 177px;
}

.mw222 {
  width: 222px;
}

.mw360 {
  width: 360px;
}

.mw434 {
  width: 434px;
}

.mw786 {
  width: 786px;
}

.mw930 {
  width: 930px;
}

.mw1246 {
  width: 1246px;
}

.mh115 {
  min-height: 11.5rem;
}

.mh217 {
  min-height: 21.7rem;
}

.mh627 {
  min-height: 62.7rem;
}

.h46 {
  height: 4.6rem;
}

.h48 {
  height: 4.8rem;
}

.h470 {
  height: 47rem;
}

.h464 {
  height: 46.4rem;
}

.px4 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.px8 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

.px10 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px16 {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.px20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px24 {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.px30 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px40 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px44 {
  padding-left: 4.4rem;
  padding-right: 4.4rem;
}

.py4 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.py8 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.py10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py12 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.py14 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.py15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py16 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.py20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py24 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.py26 {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.py30 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py38 {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.py40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py44 {
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.py50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py60 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py138 {
  padding-top: 13.8rem;
  padding-bottom: 13.8rem;
}

.pt5 {
  padding-top: 0.5rem;
}

.pt6 {
  padding-top: 0.6rem;
}

.pt8 {
  padding-top: 0.8rem;
}

.pt10 {
  padding-top: 1rem;
}

.pt12 {
  padding-top: 1.2rem;
}

.pt14 {
  padding-top: 1.4rem;
}

.pt16 {
  padding-top: 1.6rem;
}

.pt18 {
  padding-top: 1.8rem;
}

.pt20 {
  padding-top: 2rem;
}

.pt22 {
  padding-top: 2.2rem;
}

.pt23 {
  padding-top: 2.3rem;
}

.pt24 {
  padding-top: 2.4rem;
}

.pt26 {
  padding-top: 2.6rem;
}

.pt28 {
  padding-top: 2.8rem;
}

.pt30 {
  padding-top: 3rem;
}

.pt32 {
  padding-top: 3.2rem;
}

.pt36 {
  padding-top: 3.6rem;
}

.pt38 {
  padding-top: 3.8rem;
}

.pt40 {
  padding-top: 4rem;
}

.pt46 {
  padding-top: 4.6rem;
}

.pt47 {
  padding-top: 4.7rem;
}

.pt48 {
  padding-top: 4.8rem;
}

.pt50 {
  padding-top: 5rem;
}

.pt53 {
  padding-top: 5.3rem;
}

.pt57 {
  padding-top: 5.7rem;
}

.pt60 {
  padding-top: 6rem;
}

.pt62 {
  padding-top: 6.2rem;
}

.pt74 {
  padding-top: 7.4rem;
}

.pt77 {
  padding-top: 7.7rem;
}

.pt80 {
  padding-top: 8rem;
}
.pt90 {
  padding-top: 9rem;
}

.pt95 {
  padding-top: 9.5rem;
}

.pt106 {
  padding-top: 10.6rem;
}

.pt114 {
  padding-top: 11.4rem;
}

.pt116 {
  padding-top: 11.6rem;
}

.pt120 {
  padding-top: 12rem;
}

.pt123 {
  padding-top: 12.3rem;
}

.pt134 {
  padding-top: 13.4rem;
}

.pt153 {
  padding-top: 15.3rem;
}

.pt160 {
  padding-top: 16rem;
}

.pt164 {
  padding-top: 16.4rem;
}

.pb6 {
  padding-bottom: 0.6rem;
}

.pb8 {
  padding-bottom: 0.8rem;
}

.pb10 {
  padding-bottom: 1rem;
}

.pb12 {
  padding-bottom: 1.2rem !important;
}

.pb14 {
  padding-bottom: 1.4rem;
}

.pb16 {
  padding-bottom: 1.6rem;
}

.pb20 {
  padding-bottom: 2rem;
}

.pb22 {
  padding-bottom: 2.2rem;
}

.pb23 {
  padding-bottom: 2.3rem;
}

.pb24 {
  padding-bottom: 2.4rem;
}

.pb26 {
  padding-bottom: 2.6rem;
}

.pb28 {
  padding-bottom: 2.8rem;
}

.pb30 {
  padding-bottom: 3rem;
}

.pb32 {
  padding-bottom: 3.2rem;
}

.pb36 {
  padding-bottom: 3.6rem;
}

.pb40 {
  padding-bottom: 4rem;
}

.pb48 {
  padding-bottom: 4.8rem;
}
.pb60 {
  padding-bottom: 6rem;
}

.pb90 {
  padding-bottom: 9rem;
}
.pb95 {
  padding-bottom: 9.5rem;
}

.pb248 {
  padding-bottom: 24.8rem;
}

.pl1 {
  padding-left: 0.1rem;
}

.pl8 {
  padding-left: 0.8rem;
}

.pl16 {
  padding-left: 1.6rem;
}

.pl20 {
  padding-left: 2rem;
}

.pl200 {
  padding-left: 20rem;
}

.pl336 {
  padding-left: 33.6rem;
}

.pr20 {
  padding-right: 2rem;
}

.pr40 {
  padding-right: 4rem;
}

@media screen and (max-width: 500px) {
  .px16-mo { 
    padding-left: 16px;
    padding-right: 16px;
  }
  .py16-mo { 
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.mx-auto {
  margin: 0 auto;
}

.mxw1564 {
  max-width: 156.4rem;
}
.mxw1248 {
  max-width: 124.8rem;
}
.mxw140 {
  max-width: 14rem;
}

.mxw238 {
  max-width: 23.8rem;
}

.mxw280 {
  max-width: 28rem;
}
.mxw286 {
  max-width: 28rem;
}

.mxw292 {
  max-width: 29.2rem;
}

.mxw295 {
  max-width: 29.5rem;
}

.mxw296 {
  max-width: 29.6rem;
}

.mxw360 {
  max-width: 36rem;
}

.mxw436 {
  max-width: 43.6rem;
}

.mxw443 {
  max-width: 44.3rem;
}

.mxw454 {
  max-width: 44.3rem;
}

.mxw612 {
  max-width: 61.2rem;
}

.mxw614 {
  max-width: 61.4rem;
}

.mxw712 {
  max-width: 71.2rem;
}

.mxw766 {
  max-width: 76.6rem;
}

.mxw930 {
  max-width: 93rem;
}

.mxw980 {
  max-width: 98rem;
}

.mxw1246 {
  max-width: 124.6rem;
}

.mt4 {
  margin-top: 0.4rem;
}

.mt6 {
  margin-top: 0.6rem;
}

.mt8 {
  margin-top: 0.8rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt12 {
  margin-top: 1.2rem;
}

.mt14 {
  margin-top: 1.4rem;
}

.mt16 {
  margin-top: 1.6rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt22 {
  margin-top: 2.2rem;
}

.mt24 {
  margin-top: 2.4rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt26 {
  margin-top: 2.6rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mt34 {
  margin-top: 3.4rem;
}

.mt36 {
  margin-top: 3.6rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt44 {
  margin-top: 4.4rem;
}
.mt45 {
  margin-top: 4.5rem;
}

.mt46 {
  margin-top: 4.6rem;
}
.mt47 {
  margin-top: 4.7rem;
}
.mt50 {
  margin-top: 5rem;
}

.mt60 {
  margin-top: 6rem;
}
.mt70 {
  margin-top: 7rem;
}

.mt77 {
  margin-top: 7.7rem;
}
.mt80 {
  margin-top: 8rem;
}
.mt90 {
  margin-top: 9rem;
}

.mt100 {
  margin-top: 10rem;
}

.mt114 {
  margin-top: 11.4rem;
}
.mt125 {
  margin-top: 12.5rem;
}

.mb6 {
  margin-bottom: 0.6rem;
}

.mb8 {
  margin-bottom: 0.8rem;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb12 {
  margin-bottom: 1.2rem;
}
.mb14 {
  margin-bottom: 1.4rem;
}
.mb16 {
  margin-bottom: 1.6rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb22 {
  margin-bottom: 2.2rem;
}

.mb23 {
  margin-bottom: 2.3rem;
}

.mb24 {
  margin-bottom: 2.4rem;
}
.mb30 {
  margin-bottom: 3rem;
}

.mb32 {
  margin-bottom: 3.2rem;
}

.mb36 {
  margin-bottom: 3.6rem;
}

.mb40 {
  margin-bottom: 4rem;
}
.mb44 {
  margin-bottom: 4.4rem;
}
.mb50 {
  margin-bottom: 5rem;
}
.mb60 {
  margin-bottom: 6rem;
}

.mb114 {
  margin-bottom: 11.4rem;
}

.mb-14 {
  margin-bottom: -1.4rem;
}

.ml4 {
  margin-left: 0.4rem;
}

.ml5 {
  margin-left: 0.5rem;
}

.ml6 {
  margin-left: 0.6rem;
}

.ml8 {
  margin-left: 0.8rem;
}

.ml10 {
  margin-left: 1rem;
}

.ml12 {
  margin-left: 1.2rem;
}

.ml14 {
  margin-left: 1.4rem;
}

.ml16 {
  margin-left: 1.6rem;
}

.ml18 {
  margin-left: 1.8rem;
}

.ml20 {
  margin-left: 2rem;
}

.ml23 {
  margin-left: 2.3rem;
}

.ml30 {
  margin-left: 3rem;
}

.ml40 {
  margin-left: 4rem;
}

.ml-30 {
  margin-left: -3rem;
}

.mr8 {
  margin-right: 0.8rem;
}

.mr22 {
  margin-right: 2.2rem;
}

@media screen and (max-width: 1300px) {
  .pt0-mo {
    padding-top: 0rem;
  }
  .pt10-mo {
    padding-top: 1rem;
  }
  .pt20-mo {
    padding-top: 2rem;
  }
  .pt40-mo {
    padding-top: 4rem;
  }
  .pt50-mo {
    padding-top: 5rem;
  }
  .pt64-mo {
    padding-top: 6.4rem;
  }
  .pb40-mo {
    padding-bottom: 4rem;
  }
  .mt10-mo {
    margin-top: 1rem;
  }
  .ml0-mo {
    margin-left: 0;
  }
  .mt20-mo { 
    margin-top: 2rem;
  }
}


@media screen and (max-width: 500px) {
  html {
    font-size: 50%;
  }
}
.header {
  position: relative;
  
  
}
.header .row1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 3.6rem;
  display: flex;
  justify-content: space-between;
  background: var(--navy05);
}
.header .row1 .top-nav {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
.header .row1 .top-nav li + li {
  position: relative;
}
.header .row1 .top-nav li + li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.4rem;
  display: block;
  content: "";
  width: 1px;
  height: 11px;
  border-radius: 1px;
  background: #5A68D1;
}
.header .row1 .top-nav li a {
  display: block;
  overflow: hidden;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .header .row1 {
    display: none;
  }
}
.header .row2 {
  width: 100%;
  position: fixed;
  top: 3.6rem;
  left: 0;
  z-index: 999;
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4rem;
  background: var(--white);
  border-bottom: 1px solid #ddd;
}
.header .row2 .main-menu {
  margin-left: 3rem;
}
.header .row2 .main-menu > ul {
  display: flex;
}
.header .row2 .main-menu > ul > li {
  position: relative;
  background: var(--white);
}
.header .row2 .main-menu > ul > li > a {
  height: 6.9rem;
  display: flex;
  align-items: center;
  padding: 1rem 3rem;
  color: var(--navy05);
  font-size: 1.6rem;
  font-weight: 700;
}
.header .row2 .main-menu > ul > li > a.active {
  background: var(--blue00);
  color: white;
}
.header .row2 .main-menu > ul > li:hover a {
  background: var(--blue00);
  color: white;
}
.header .row2 .main-menu > ul > li .sub-menu {
  display: none;
  position: absolute;
  top: 6.9rem;
  left: 0;
  width: 100%;
  z-index: 300;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .row2 .main-menu > ul > li .sub-menu li a {
  width: 100%;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  color: var(--navy05);
  font-size: 1.4rem;
  text-align: center;
  line-height: 100%;
  border-bottom: 1px solid var(--grayc8);
}
.header .row2 .main-menu > ul > li .sub-menu li a:hover {
  background: var(--grayf0);
  font-weight: 700;
}
.header .row2 .logo a {
  display: block;
}
.header .row2 .search {
  display: flex;
  align-items: center;
  height: 3.8rem;
  border: 1px solid var(--blue00);
  margin: 0 auto;
  padding: 1rem 0;
}
.header .row2 .search .select-wrap {
  padding-left: 1.4rem;
  display: flex;
}
.header .row2 .search .select-wrap select {
  color: var(--blue00);
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  padding-right: 2.9rem;
  background: url(/images/ico_arrow_down_blue.svg) no-repeat top 50% right 1rem;
}
.header .row2 .search .select-wrap select:focus {
  outline: none;
}
.header .row2 .search .select-wrap::after {
  display: block;
  content: "";
  width: 1px;
  height: 22px;
  background: var(--blue00);
}
.header .row2 .search input {
  width: 100%;
  min-width: 20rem;
  height: 3rem;
  color: #19202D;
  font-size: 1.4rem;
  padding: 1rem 1.4rem 1rem 1rem;
  border: 0;
  margin-top: 0.25rem;
}
.header .row2 .search input::-moz-placeholder {
  color: var(--grayb5);
}
.header .row2 .search input::placeholder {
  color: var(--grayb5);
}
.header .row2 .search input:focus {
  outline: 0;
}
.header .row2 .search button {
  width: 13.7rem;
  height: 3.8rem;
  padding: 1rem;
  background: var(--blue00);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .header .row2 {
    display: none;
  }
}
.header .header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  height: 6.4rem;
  padding: 0 1.6rem;
  z-index: 500;
  background: var(--white);
}
.header .header-mobile > div.align {
  height: 6.4rem;
}
.header .header-mobile .btn-hamburger {
  width: 2.6rem;
}
.header .header-mobile .btn-hamburger img {
  width: 100%;
}
.header .header-mobile h1 a {
  display: block;
  width: 16.6rem;
}
.header .header-mobile h1 a img {
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .header .header-mobile {
    display: block;
  }
}
.header .header-mobile .hamburger {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 100;
  overflow: auto;
  transition: opacity 0.3s ease-in-out;
}
.header .header-mobile .hamburger.active {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.header .header-mobile .hamburger .row1-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: var(--navy05);
}
.header .header-mobile .hamburger .main-menu-mobile {
  padding: 12.3rem 1.6rem 5.6rem 1.6rem;
}
.header .header-mobile .hamburger .main-menu-mobile > li > a {
  display: block;
  color: var(--gray75);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  padding: 1.6rem 0;
}
.header .header-mobile .hamburger .main-menu-mobile .sub-menu-mobile {
  display: none;
  padding-top: 1.6rem;
}
.header .header-mobile .hamburger .main-menu-mobile .sub-menu-mobile > li > a {
  display: block;
  color: var(--black1e);
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
  padding-left: 0.8rem;
}
.header .header-mobile .footer-mobile {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--navy05);
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
.header .slider-wrap {
  padding-top: 10.6rem;
  width: calc(100% - 317px); 
  aspect-ratio: 1 / 0.2267;
}
.header .slider-wrap-mo {
	display: none;
}
@media screen and (max-width: 1300px) {
  .header .slider-wrap {
    padding-top: 0;
    width: 100%;
  }
}
.header .slider {
  position: relative;
}
.header .slider img {
  width: 100%;
  height: 359.57px;
  margin-top: -1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .header .slider img {
    height: 423.57px;
  }
}
@media screen and (max-width: 768px) {
	.header .slider-wrap {display: none;}
	.header .slider-wrap-mo {display: block;}
}
@media screen and (max-width: 500px) {
  .header .slider img {
    height: 359.57px;
    /* height: none;
    object-fit: none; */
    /* aspect-ratio: 1 / 0.7594; */
  }
}
@media screen and (max-width: 400px) {
  .header .slider img {
    height: 423.57px;
  }
}
.header .banner .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .header .banner {
    display: block;
  }
}

.nav-menu {
  width: 31.7rem;
  position: absolute;
  /* top: 0.3rem;
  right: -31.7rem; */
  top: 106px; right: 0
}
.nav-menu__title {
  background: var(--text-black, #000);
  color: var(--background-white, #FFF);
  text-align: center;
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding: 1.4rem;
}
.nav-menu ul li {
  height: 6.3rem;
  background: var(--white);
}
.nav-menu ul li + li {
  border-top: 1px solid var(--grayf0);
}
.nav-menu ul li a {
  height: 6.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  color: var(--black19);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.nav-menu ul li a:hover {
  background: var(--blue00);
  color: var(--white);
}
@media screen and (max-width: 1300px) {
  .nav-menu {
    display: none;
  }
}

.hover-menu {
  position: absolute;
  top: 10.3rem;
  left: 0;
  z-index: 200;
  width: calc(100% - 31.7rem);
  /* width: calc(100% - 317px); */
  height: 36rem;
  display: none; 
}
.hover-menu.active { 
  display: block !important;
  /* background: red; */
}
@media screen and (max-width: 1300px) {
  .hover-menu {
    width: 100%;
    top: 85px;
  }

}
@media screen and (max-width: 500px) {
  .hover-menu {
    top: 13.3rem;
  }
}
.hover-menu .hover-menu-wrap {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 100.1%;
  height: 36rem;
  background: var(--grayf4);
}
.hover-menu .hover-menu-wrap.active {
  display: block;
}
@media screen and (max-width: 1300px) {
  .hover-menu .hover-menu-wrap {
    top: -4.2rem;
  }
}
@media screen and (max-width: 400px) {
  .hover-menu .hover-menu-wrap {
    height: 46rem;
  }
}
.hover-menu .hover-menu01 { 
  align-items: center;
  justify-content: center;
}
.hover-menu .hover-menu01.active {
  display: flex;
}
.hover-menu .hover-menu02 {
  margin: 0 auto;
}
.hover-menu .hover-menu02 ul {
  height: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  max-width: 80%;
  margin: 0 auto;
}
.hover-menu .hover-menu02 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hover-menu .hover-menu03 .square-wrap {
	background:none;
}

@media screen and (max-width: 1300px) {
  .hover-menu .hover-menu01 .align {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    height:60%;
  }
  .hover-menu .hover-menu01 .txt-wrap {
	width: auto;
	padding: 1rem;
  }
  .hover-menu .hover-menu01 img {width: 100%;}
  .hover-menu .hover-menu02 {
    align-items: center;
    justify-content: center;
  }
  .hover-menu .hover-menu02 .hover-menu-content {
    padding-top: 0;
  }
  .hover-menu .hover-menu02 .hover-menu-content.align {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .hover-menu .hover-menu02 .hover-menu-content .img-wrap {
    width: 5rem;
    height: 5rem;
  }
  .hover-menu .hover-menu02 .hover-menu-content .img-wrap img {
    display: block;
    width: 70%;
  }
  .hover-menu .hover-menu02 .hover-menu-content .virtual-object {
    display: none;
  }
  .hover-menu .hover-menu02.active {
    display: flex;
  }
  .hover-menu .hover-menu03 {
    align-items: center;
    justify-content: center;
  }
  .hover-menu .hover-menu03 img {width: 100%;}
  .hover-menu .hover-menu03 .hover-menu-content.align {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 60%;
  }
  .hover-menu .hover-menu03.active {
    display: flex;
  }
  .hover-menu .hover-menu04 {
    align-items: center;
    justify-content: center;
  }
  .hover-menu .hover-menu04 .hover-menu-content.align {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 50%;
  }
  .hover-menu .hover-menu04 .hover-menu-content p {
    font-size: 1rem;
    padding-top: 0;
  }
  .hover-menu .hover-menu04.active {display: flex;}
  .hover-menu .hover-menu05 .select-wrap {width: auto;}
}
@media screen and (max-width: 768px) {
  .hover-menu .hover-menu01 .align {
    height:auto;
  }
}
@media screen and (max-width: 500px) {
  .hover-menu .hover-menu-wrap {
    height: 120%;
    top: -80px;
  }
}
@media screen and (max-width: 400px) {
  .hover-menu .hover-menu-wrap {
    height: 140%;
    top: -80px;
  }
}

.hover-menu ul {
  height: 35.7rem;
  gap: 2rem;
}
@media screen and (max-width: 1300px) {
  .hover-menu ul {
    padding: 0 2rem;
  }
}
.hover-menu ul li .square-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 10rem;
  background: var(--white);
}


@media screen and (max-width: 1300px) {
  .hover-menu ul li .square-wrap {
    width: 8rem;
    height: auto;
    aspect-ratio: 1/0.66;
  }
}
.hover-menu ul li .txt-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.8rem;
  height: 8.8rem;
  background: var(--white);
  border-radius: 100%;
  color: var(--gray69);
  text-align: center;
  font-size: 1.4rem;
  padding-top: 0.8rem;
}
@media screen and (max-width: 1300px) {
  .hover-menu ul li .txt-wrap {
    width: 5rem;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.hover-menu ul li .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.8rem;
  height: 8.8rem;
  background: var(--white);
  border-radius: 100%;
}
.hover-menu ul li p {
  color: var(--gray69);
  text-align: center;
  font-size: 1.4rem;
  padding-top: 0.8rem;
}
.hover-menu ul li.select-wrap select {
  width: 40rem;
  height: 10rem;
  background: var(--white);
  padding: 4.3rem 5rem;
  color: var(--gray69);
  font-size: 1.4rem;
}
@media screen and (max-width: 1300px) {
  .hover-menu ul li.select-wrap {
    width: 100%;
  }
  .hover-menu ul li.select-wrap select {
    width: 100%;
    height: 4rem;
    padding: 0 0.8rem;
  }
}
.hover-menu ul li.tilde {
  color: var(--black19);
  text-align: center;
  font-size: 5rem;
}
@media screen and (max-width: 1300px) {
  .hover-menu ul li.tilde {
    font-size: 2.4rem;
  }
}

.utility {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.utility li .btn-sale {
  display: block;
  height: 3.8rem;
  background: var(--orangeff);
  padding: 1rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
.utility li .btn-icon {
  width: 2.2rem;
}
.utility li .btn-icon img {
  display: block;
  width: 100%;
}

.top-select {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.top-select li select {
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid #5A68D1;
  padding: 0.6rem 2.3rem 0.6rem 0.8rem;
  background: var(--navy05) url(/images/ico_arrow_down_white.svg) no-repeat top 50% right 0.8rem;
}

.search {
  display: flex;
  align-items: center;
  height: 3.8rem;
  border: 1px solid var(--blue00);
  margin: 0 auto;
  padding: 1rem 0;
  background: var(--white);
}
.search .select-wrap {
  padding-left: 1.4rem;
  display: flex;
}
.search .select-wrap select {
  color: var(--blue00);
  font-family: Pretendard;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  padding-right: 2.9rem;
  background: url(/images/ico_arrow_down_blue.svg) no-repeat top 50% right 1rem;
}
.search .select-wrap select:focus {
  outline: none;
}
.search .select-wrap::after {
  display: block;
  content: "";
  width: 1px;
  height: 22px;
  background: var(--blue00);
}
.search input {
  width: 100%;
  min-width: 20rem;
  height: 3rem;
  color: #19202D;
  font-size: 1.4rem;
  padding: 1rem 1.4rem 1rem 1rem;
  border: 0;
  margin-top: 0.25rem;
}
.search input::-moz-placeholder {
  color: var(--grayb5);
}
.search input::placeholder {
  color: var(--grayb5);
}
.search input:focus {
  outline: 0;
}
.search button {
  width: 13.7rem;
  height: 3.8rem;
  padding: 1rem;
  background: var(--blue00);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.top-nav {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  background: var(--navy05);
  height: 3.6rem;
}
@media screen and (max-width: 1300px) {
  .top-nav {
    height: 4rem;
  }
}
.top-nav li + li {
  position: relative;
}
.top-nav li + li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.4rem;
  display: block;
  content: "";
  width: 1px;
  height: 11px;
  border-radius: 1px;
  background: #5A68D1;
}
.top-nav li a {
  display: block;
  overflow: hidden;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-menu-mobile {
  display: none;
  width: calc(100% + 31.7rem);
  position: absolute;
  bottom: 0rem;
  left: 0;
  background: var(--white);
  pointer-events: auto;
  z-index: 1000;
}
@media screen and (max-width: 1300px) {
  .nav-menu-mobile {
    display: block;
    width: 100%;
    bottom: -1rem;
  }
}
@media screen and (max-width: 400px) {
  .nav-menu-mobile {
    bottom: -3rem;
  }
}
.nav-menu-mobile ul {
  height: 4.2rem;
  display: flex;
}
.nav-menu-mobile ul li {
  width: 100%;
}
.nav-menu-mobile ul li a {
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray3f);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.nav-menu-mobile ul li a.active, .nav-menu-mobile ul li a:hover {
  background: var(--blue00);
  color: var(--white);
}

.slick-arrow {
  font-size: 0;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: 200;
  gap: 0.9rem;
}
@media screen and (max-width: 1300px) {
  .slick-dots {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: 5rem;
  }
}
.slick-dots li button {
  width: 0.6rem;
  height: 0.6rem;
  background: var(--white);
  font-size: 0;
  border-radius: 100%;
}
.slick-dots li.slick-active button {
  background: var(--orangeff);
}

.btn.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.6rem;
  height: 8.6rem;
  border: 1px solid var(--grayb5);
}
.btn.primary {
  background: var(--blue00);
  color: var(--white);
}
.btn.md {
  padding: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.btn.lg {
  height: 6.5rem;
  font-size: 1.6rem !important;
}
.btn.primary2 {
  background: var(--orangeff);
  color: var(--white);
}
.btn.primary2.lg {
  padding: 1rem;
  min-width: 21.8rem;
  height: 4.6rem;
}
.btn.line {
  padding: 1rem;
}
.btn.line.blue {
  border: 1px solid var(--blue00);
  background: var(--white);
}
.btn.line.blue2 {
  border: 1px solid var(--blue00);
  background: transparent;
  color: var(--blue00);
  font-size: 1.4rem;
  font-weight: 700;
}
.btn.line.blue2.ico1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn.line.blue2.ico1::after {
  display: block;
  content: "";
  width: 5px;
  height: 10px;
  background: url(../images/ico_arrow_right_blue.svg) no-repeat center center / 5px;

}
.btn.line.orange {
  border: 1px solid var(--orangeff);
  background: var(--orangeffd);
}
.btn.line.gray {
  background: var(--white);
  border: 1px solid var(--grayc8);
}
.btn.line.gray2 {
  background: transparent;
  border: 1px solid var(--grayc8);
}
.btn.line.gray2.active {
  background: var(--orangeffd);
  border: 1px solid var(--orangeff);
  color: var(--orangeff);
}
.btn.line.gray.active {
  background: var(--orangeffd);
  border: 1px solid var(--orangeff);
  color: var(--orangeff);
}
.btn_pointer {cursor: pointer;}

.label-wrap {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}
.label-wrap li {
  position: relative;
  color: var(--gray6a);
  font-size: 1.2rem;
  font-weight: 500;
}
.label-wrap li + li:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.6rem;
  width: 1px;
  height: 11px;
  background: var(--grayc8);
  margin-top: 0.08rem;
}

.label-certification {
  display: flex;
  gap: 0.6rem;
}
.label-certification .label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6rem 0.4rem;
  min-width: 8rem;
  height: 2.2rem;
}
.label-certification .label.orange {
  background: var(--orangeff);
}
.label-certification .label.blue {
  background: var(--blue00);
}
.label-certification .label.ico1 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.label-certification .label.ico1::before {
  display: block;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(/images/ico_like.svg) no-repeat 0 0/contain;
}
.label-certification .label.ico2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.label-certification .label.ico2::before {
  display: block;
  content: "";
  width: 13px;
  height: 16px;
  background: url(/images/ico_tri.svg) no-repeat 0 0/contain;
}

.btn-type2 {
  background: var(--white);
  border: 1px solid var(--grayc8);
  color: var(--gray6a);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.btn-type2.active {
  border: 1px solid var(--orangeff);
  background: var(--orangeffd);
  color: var(--orangeff);
}

.input-type1 {
  height: 3.2rem;
  border: 1px solid var(--grayb5);
  width: 100%;
  padding: 1rem;
}
.input-type1::-moz-placeholder {
  color: var(--grayc8);
  font-size: 1.4rem;
}
.input-type1::placeholder {
  color: var(--grayc8);
  font-size: 1.4rem;
}

.input-type2 input {
  height: 3.8rem;
  border: 0;
  background: var(--grayf0);
  width: 100%;
  padding: 1rem;
  color: var(--gray3f);
}
.input-type2 input.white {
  background: var(--white);
  border: 1px solid var(--grayb5);
}
.input-type2 input::-moz-placeholder {
  color: var(--gray3f);
  font-size: 1.4rem;
}
.input-type2 input::placeholder {
  color: var(--gray3f);
  font-size: 1.4rem;
}

.input-type3 input {
  height: 4.6rem;
  border: 1px solid var(--grayb5);
  width: 100%;
  padding: 1rem 1.6rem;
}
.input-type3 input::-moz-placeholder {
  color: var(--grayc8);
  font-size: 1.4rem;
}
.input-type3 input::placeholder {
  color: var(--grayc8);
  font-size: 1.4rem;
}
.input-type3.won {
  position: relative;
}
.input-type3.won::after {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  content: "원";
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  color: var(--black00);
  font-size: 1.4rem;
}
.input-type3 input[type=date] {
  background: url(/images/ico_calendar.svg) no-repeat top 50% right 10px;
}
.input-type4 { 
  display: grid;
  grid-template-columns: 1fr minmax(8.4rem, max-content);
  
}
.input-type4 input { 
  height: 3.8rem;
  background: var(--white);
  border: 1px solid var(--grayb5);
  padding: 0 1.6rem;
}
.input-type4 input[type="date"] { 
  background: #fff url(../images/ico_calendar.svg) no-repeat right 10px top 50% / 2.4rem;
}
.input-type4 button { 
  display: block;
  /* min-width: 8.4rem; */
  background: var(--grayb5);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
.input-file { 
  display: flex;
}
.input-file .file-name { 
  display: flex;
  align-items: center;
  height: 3.8rem;
  border: 1px solid var(--grayb5);
  background: var(--white);
  color: var(--black1e);
  font-size: 1.4rem;
  padding: 1.6rem;
  width: 100%;
  
}
.input-file .btn-file { 
    height: 38px;
    padding: 16px;
    border: 1px solid var(--grayc8);
    background: var(--white);
    margin-left: 20px;
}

.file-upload {
  width: 13.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  height: 3.8rem;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  color: var(--grayb5);
  cursor: pointer;
  background-color: #fff;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.file-upload:hover {
  border-color: #999;
  color: #888;
}

/* 기본 input[type="file"] 숨기기 */
.file-upload-input {
  display: none;
}
@media screen and (max-width: 1300px) {
  .file-upload {
    min-width: 100%;
  }
}

.file-input {
  display: none;
}

.file-label {
  height: 3.8rem;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: var(--white);
  cursor: pointer;
  padding: 1.2rem 0 1.6rem 1.2rem;
}

.file-text {
  color: var(--grayc8);
  font-size: 1.4rem;
  padding-top: 0.5rem;
}

.file-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.9rem;
  height: 4.2rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grayb5);
  padding-top: 0.5rem;
}

.file-button:hover {
  background-color: #c0c0c0;
}

.check-type1 {
  display: flex;
  align-items: center;
}
.check-type1 label {
  color: var(--gray6a);
  font-size: 1.4rem;
  font-weight: 700;
}
.check-type1 input.checkbox {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid red !important;
  background: red !important;
}
.check-type1 input.checkbox:checked {
  background: yellow !important;
}

.select-type1 {
  position: relative;
}
.select-type1 select {
  background: red;
  height: 3.2rem;
  padding-left: 1.6rem;
  padding-right: 2rem;
  background: url(/images/ico_arrow_down_gray.svg) no-repeat top 50% right 0/13px;
}
.select-type1::before {
  position: absolute;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: var(--gray6a);
}

.select-type2 select {
  min-width: 10.8rem;
  color: var(--gray6a);
  font-size: 1.4rem;
  padding: 1rem 0.6rem 1rem 1rem;
  border: 1px solid var(--grayb5);
  background: url(/images/ico_arrow_down_gray2.svg) no-repeat top 50% right 1.15rem/1.3rem;
}
.select-type2 select.mw100 {
	min-width: 100%;
}
.select-type3 select { 
	height: 5.6rem;
	padding: 0 1.8rem;
	color: var(--graya0);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 16px */
	border: 1px solid #E4E4E4;
	background: url(/images/ico_arrow_down_gray2.svg) no-repeat top 50% right 1.8rem/1.3rem;
}
@media screen and (max-width: 370px) {
  .check-box.py15 { 
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  } 
}
.check-box input[type=checkbox] {
	display: none;
}
.check-box input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	width: 2rem;
	height: 2rem;
	border: 1.5px solid var(--gray3f);
	background: var(--white);
}
.check-box input[type="checkbox"] + label span {
	margin-left: 28px;
	display: block;
	min-width: 300px;
}
.check-box input[type=checkbox]:checked + label {
	position: relative;
}
.check-box input[type=checkbox]:checked + label::after {
	position: absolute;
	top: -1px;
	left: -1px;
	display: block;
	content: "";
	width: 2rem;
	height: 2rem;
	background: url(/images/ico_checked.svg) no-repeat center center;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0px; /* 체크박스와 텍스트 사이 여백 */
  cursor: pointer;
  width: 100%; /* 반응형 */
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* 체크박스 스타일 */
.custom-checkbox .checkmark {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--gray3f);
  position: relative;
  flex-shrink: 0;
}

/* 체크되었을 때 표시될 체크 아이콘 */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  background:  url(/images/ico_checked.svg) no-repeat center center;
  border-radius: 0;
}
.check-box input[type=checkbox]:checked + label::after {
	position: absolute;
	top: -1px;
	left: -1px;
	display: block;
	content: "";
	width: 2rem;
	height: 2rem;
	background: url(/images/ico_checked.svg) no-repeat center center;
}
@media screen and (max-width: 600px) {

  .custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background:  url(/images/ico_checked.svg) no-repeat center center / 10px;
    border-radius: 0;
  }

  .check-box input[type=checkbox]:checked + label::after {
    width: 15px;
    height: 15px;
    /* background: url(/images/ico_checked.svg) no-repeat center center / 10px; */
  
  }
}
/* 텍스트 */
.custom-checkbox .label-text {
  font-size: 1.6rem;
  color: var(--gray6a);
  font-weight: 400;
}
.custom-checkbox .label-text.black {
  color: var(--black00);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
	.check-box input[type="checkbox"] + label span {
		
	}
}

.ad-banner {
  position: fixed;   
  top: 12rem;
  right: 3rem;
  max-width: 15rem;
  z-index: 300;
}
@media screen and (max-width: 1300px) {
  .ad-banner {
    display: none;
  }
}
.ad-banner .youtube-wrap img {
  width: 100%;
}
.ad-banner .youtube-wrap .info {
  width: 100%;
  margin-top: -3px;
}
.ad-banner .business-card {
  margin-top: 1.6rem;
  padding: 2rem 1.6rem;
  background: var(--grayf4);
}
.ad-banner .business-card .profile {
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 100%;
  background: var(--grayd9);
  margin: 0 auto;
  overflow: hidden;
}
.ad-banner .business-card .profile img {
	display: block;
	width: 11.4rem;
	height: 11.4rem;
	border-radius: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.ad-banner .car-history {
	text-align: center;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.25rem;
	text-decoration:underline;
	border: 1px solid #C8D6DF;
	padding:2rem 1rem;
	margin-top: 1rem;
}
.ad-banner .car-history img {
	max-width:50%;
	margin-bottom: 1rem;
}

.list-type1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .list-type1 {
    width: 100%;
    min-width: 110rem;
    overflow-x: auto;
  }
}
@media screen and (max-width: 1300px) {
  .list-type1.none {
    width: 100%;
    overflow-x: none;
  }
}
.list-type1.grid4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1300px) {
  .list-type1.grid4 {
    min-width: 98rem;
  }
}
.list-type1 li {
  position: relative;
  cursor: pointer;
}
.list-type1 li img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.list-type1 li .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16.4rem;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}
.list-type1 li .info .ellipsis02 {
  margin-top: 1rem;
}
.list-type1 li .info .label-wrap {
  display: flex;
  gap: 1.2rem;
}
.list-type1 li .info .label-wrap li {
  position: relative;
  color: var(--gray6a);
  font-size: 1.2rem;
  font-weight: 500;
}
.list-type1 li .info .label-wrap li + li:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.6rem;
  width: 1px;
  height: 11px;
  background: var(--grayc8);
  margin-top: 0.08rem;
}
.list-type1 li .label-certification {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.6rem;
}
.list-type1 li .label-certification .label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6rem 0.4rem;
  min-width: 8rem;
  height: 2.2rem;
}
.list-type1 li .label-certification .label.orange {
  background: var(--orangeff);
}
.list-type1 li .label-certification .label.blue {
  background: var(--blue00);
}
.list-type1 li .label-certification .label.ico1 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.list-type1 li .label-certification .label.ico1::before {
  display: block;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(/images/ico_like.svg) no-repeat 0 0/contain;
}
.list-type1 li .label-certification .label.ico2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.list-type1 li .label-certification .label.ico2::before {
  display: block;
  content: "";
  width: 13px;
  height: 16px;
  background: url(/images/ico_tri.svg) no-repeat 0 0/contain;
}
.list-type2 {
  display: flex;
  justify-content: space-between;
}
.list-type2 li {
	display: flex;
	flex: 1;
	margin-right: 3%;
}

@media screen and (max-width: 1300px) {
  .list-type2 {
    min-width: 1000px;
  }
}
.list-type2 li img {
  display: block;
  width: 100%;
}

.list-type3 {
  flex-wrap: wrap;
  gap: 0.8rem;
}
.list-type3 li button {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--grayc8);
  overflow: hidden;
  color: var(--gray6a);
  font-size: 1.4rem;
}
.list-type3 li button.active {
  background: var(--grayf0);
  border: 1px solid var(--grayf0);
  color: var(--blue00);
  border: 1px solid var(--blue00);
}

.list-type4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.list-type4 li + li {
  margin-top: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .list-type4 li + li {
    margin-top: 0;
  }
}

.list-type5 {
  width: 100%;
  max-width: 61.5rem;
}
.list-type5 li {
  background: var(--white);
  padding: 3rem 4rem;
}
.list-type5 li + li {
  margin-top: 0.8rem;
}

.section .inner .introduction .btn-view {
  padding-bottom: 0.5rem;
  display: inline-flex;
  border-bottom: 1px solid var(--blue00);
}
@media screen and (max-width: 1300px) {
  .section .inner .introduction {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 1rem;
  }
  .section .inner .introduction .btn-view {
    border-bottom: 0;
  }
  .section .inner .introduction .btn-view.mt34 {
    margin-top: 0;
  }
}
.section .inner .img-wrap img {
  width: 100%;
  margin-bottom: -3px;
}

@media screen and (max-width: 1300px) {
  #section1.pt-mo {
    padding-top: 5rem;
  }
}

@media screen and (max-width: 1300px) {
  #section4 {
    padding: 0;
  }
}

@media screen and (max-width: 1300px) {
  #section7 {
    padding: 0;
  }
}
.faq-list { 
  
}
.faq-list li { 
  height: 5.7rem;
}
.faq-list li a { 
  position: relative;
  display: block;
  color: var(--black00);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2rem;
  border-bottom: 1px solid #EEEFF1;
}
.faq-list li a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 14px;
  height: 13px;
  background: url(../images/ico_arrow_down_blue2.svg) no-repeat center center / contain;
  z-index: 100;
  transition: all .3s;
}
.faq-list li.active { 
  height: auto;
}
.faq-list li.active a:after {
  transform: rotate(-180deg);
  
}

.faq-list li .faq-view { 
  opacity: 0;
  visibility: hidden;
  color: var(--black00);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 4rem;
  background: var(--grayf8);
  min-height: 0;
  transition: all .3s;
  
}
.faq-list li.active .faq-view { 
  min-height: 10.8rem;
  padding: 2rem 4rem;
  opacity: 1;
  visibility: visible;
}
.faq-list li .faq-view p { 
  display: none;
  
}
.faq-list li.active .faq-view p { 
  display: block;
}

.upload-img-list { 
  background: var(--grayf8);
  padding: 4.4rem;
}
.upload-img-list li { 
  position: relative;
}
.upload-img-list li img { 
  width: 100%;
  aspect-ratio: 1/0.5504;
  object-fit: cover;
}
.upload-img-list li .set-rep {
    color: var(--main-blue, #001DFF);
    font-family: Pretendard;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.upload-img-list li .delete {
  color: #000;
  font-size: 11px;
  font-weight: 500;
  text-decoration: underline;
}
.upload-img-list li .label-rep { 
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--blue00);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: .4rem .4rem .4rem 1.6rem;
}
.upload-img-list li .label-rep::before { 
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 8px;
  height: 7px;
  background: url(../images/ico_check_white.svg) no-repeat center center / contain;
}


.card-type1 {
  width: 100%;
  min-height: 10.9rem;
}
@media screen and (max-width: 500px) {
  .card-type1 {
    display: block;
  }
  .card-type1 .info {
    margin-left: 0;
    padding-top: 1rem;
  }
}
.card-type1 .img-wrap {
  width: 9.8rem;
}
.card-type1 .img-wrap img {
  width: 100%;
  min-width: 9.8rem;
  height: 7rem;
}
.card-type1 .info {
  height: 7.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-type2 {
  width: 100%;
  min-height: 10.9rem;
}
.card-type2 .img-wrap {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background: var(--grayd9);
  overflow: hidden;
}
.card-type2 .img-wrap img {
  width: 6rem;
  height: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-type2 .info ul {
  height: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-type3 button {
  display: block;
  padding: 1rem;
  min-width: 21.8rem;
  height: 4.6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .card-type3 button {
    /* flex: 1 1 50%;
    width: 50%;
    box-sizing: border-box; */
    min-width: 50%;
    
  }
}
.card-type3-input__wrap { 
  width: 100%;
  max-width: 45rem;
}
.card-type3 input {
  width: 100%;
  height: 4.4rem;
  padding: 0 1.6rem;
  background: var(--white);
  color: var(--black00);
  font-size: 1.4rem;
  border: 1px solid var(--grayb5);
  
}
.card-type3 input::placeholder {
  color: var(--gray6a) !important;
  font-size: 1.4rem;
}
@media screen and (max-width: 1300px) {
  .card-type3 input {
    font-size: 1.6rem;
  }
}
.card-type3 input::-moz-placeholder {
  color: var(--grayc8);
}
.card-type3 input::placeholder {
  color: var(--grayc8);
}
.card-type3 input:focus {
  outline: 0;
}

.card-type4 { 
  display: grid;
  grid-template-columns: 179px 1fr;
  gap: 30px;
  
}
.card-type4 img { 
  width: 179px;
  height: 116px;
  object-fit: cover;
}
.card-type5 { 
  border: 1px solid var(--grayf1);
  padding: 3.6rem;
  background: var(--grayf8);
}
.card-type5 .title { 
  color: var(--gray3f);
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid var(--grayf1);
  padding-bottom: 1rem;
}
.card-type5 .price strong {
  display: block;
    color: var(--gray3f);
    font-size: 8rem;
    font-weight: 600;
    line-height: 160%;
    text-align: center;
}
.card-type5 .price span {
  display: block;
  color: var(--gray3f);
  font-size: 5rem;
  font-weight: 300;
  line-height: 160%;
  padding-bottom: 1.5rem;
}

.table-type1.type2 tbody tr { 
  cursor: pointer;
}
.table-type1.type2 tbody tr:hover { 
  background: #f8f8f8;
}
.table-type1.border-top { 
  border-top: 1px solid #EEEFF1;
}
.table-type1 thead tr { 
  border-bottom: 1px solid #EEEFF1;
  height: 5.4rem;
  
}
.table-type1 thead tr th { 
  background: #FAFCFF;
  height: 5.4rem;
  color: #3F5E72;
  font-size: 1.4rem;
  font-weight: 700;
  /* padding: 2rem; */
}
.table-type1 tbody tr { 
  border-bottom: 1px solid #EEEFF1;
  height: 5.4rem;
}
.table-type1 tbody tr td { 
  color: var(--black00);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  height: 5.4rem;
}
.table-type1 tbody tr td.border-right { 
  border-right: 1px solid #EEEFF1;
}


.certificate {
  background: #D9D9D9;
}
.certificate img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text.fz12 {
  font-size: 1.2rem;
}
.text.fz14 {
  font-size: 1.4rem;
}
.text.fz16 {
  font-size: 1.6rem;
}
.text.fz18 {
  font-size: 1.8rem;
}
.text.fz24 {
  font-size: 2.4rem;
}
.text.fz30 {
  font-size: 3rem;
}
.text.fz36 {
  font-size: 3.6rem;
}
.text.fz38 {
  font-size: 3.8rem;
}
.text.fz52 {
  font-size: 5.2rem;
}
.text.fw400 {
  font-weight: 400;
}
.text.fw500 {
  font-weight: 500;
}
.text.fw600 {
  font-weight: 600;
}
.text.fw700 {
  font-weight: 700;
}
.text.fw800 {
  font-weight: 800;
}
.text.lh160 {
  line-height: 160%;
}
.text.lh180 {
  line-height: 180%;
}
.text.black00 {
  color: var(--black00);
}
.text.black2d {
  color: var(--black2d);
}
.text.black24 {
  color: var(--black24);
}
.text.black2d {
  color: var(--black2d);
}
.text.orangeff {
  color: var(--orangeff);
}
.text.redf0 {
  color: #F00;
}
.text.green32 {
  color: var(--green32);
}
.text.navy13 {
  color: var(--navy13);
}
.text.blue00 {
  color: var(--blue00);
}
.text.graya0 {
  color: var(--graya0);
}
.text.graya7 {
  color: var(--graya7);
}
.text.gray3f {
  color: var(--gray3f);
}
.text.gray6a {
  color: var(--gray6a);
}
.text.gray68 {
  color: var(--gray68);
}
.text.gray69 {
  color: var(--gray69);
}
.text.white {
  color: var(--white);
}
.text.underline {
  text-decoration: underline;
}
.text.spacing1 {
  letter-spacing: 0.72rem;
}
.text.ico1 {
  display: flex;
  gap: 0.4rem;
}
.text.ico1::after {
  display: block;
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url(/images/ico_check_green.svg) no-repeat 0 0/contain;
}
.text.ico2 {
  display: flex;
  gap: 0.4rem;
}
.text.ico2::after {
  display: block;
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url(/images/ico_circle_gray.svg) no-repeat 0 0/contain;
}
.text.ico3 {
  display: flex;
  gap: 0.4rem;
}
.text.ico3::before {
  display: block;
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url(/images/ico_check_green.svg) no-repeat 0 0/contain;
}
.text.ico4 {
  display: flex;
  align-items: center;
}
.text.ico4::before {
  display: block;
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url(/images/ico_alert.svg) no-repeat 0 0/contain;
}

label {
  display: inline-block;
}

.ellipsis01 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ellipsis02 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowrap {
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.footer {
  background: var(--gray2d);
}
.footer .inner {
  padding: 0 2rem;
}
.footer .inner .row1 {
  height: 4.8rem;
  border-bottom: 1px solid var(--gray69);
}
.footer .inner .row1 .link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  height: 4.8rem;
  min-width: 600px;
}
.footer .inner .row1 .link-list li + li {
  position: relative;
}
.footer .inner .row1 .link-list li + li::before {
  position: absolute;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.4rem;
  width: 1px;
  height: 11px;
  border-radius: 1px;
  background: var(--gray69);
}
.footer .inner .row1 .link-list li a {
  display: block;
  overflow: hidden;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}
.footer .inner .row2 {
  padding-top: 2.9rem;
  padding-bottom: 2.9rem;
  border-bottom: 1px solid var(--gray69);
}
.footer .inner .row2 .info-list li {
  display: flex;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
}
.footer .inner .row2 .info-list li .title {
  width: 10rem;
}
@media screen and (max-width: 1300px) {
  .footer .inner .row2.align {
    display: block;
  }
  .footer .inner .row2 > div:nth-child(2) {
    padding-top: 2rem;
  }
}
.footer .inner .row3 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.8rem;
  gap: 2.5rem;
  min-width: 1300px;
}
.footer .inner .row3 ul li {
  color: var(--background-gray, #F4F4F4);
  font-size: 1.4rem;
  font-weight: 700;
}

.step-bar {
  gap: 5.1rem;
}
.step-bar li {
  display: flex;
  gap: 0.6rem;
}
.step-bar li + li {
  position: relative;
}
.step-bar li + li::before {
  position: absolute;
  left: -3.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(/images/ico_arrow_right_gray01.svg) no-repeat 0 0/contain;
}
.step-bar li.active::before {
  background: url(/images/ico_arrow_right_orange.svg) no-repeat 0 0/contain;
}
.step-bar li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray6a);
  background: var(--grayf0);
}
.step-bar li.active {
  color: var(--orangeff);
}
.step-bar li.active i {
  color: var(--orangeff);
  background: #FFDDD1;
}

@media screen and (max-width: 1300px) {
  .slider02-wrap {
    height: 50vw;
  }
}
@media screen and (max-width: 900px) {
  .slider02-wrap {
    height: 60vw;
  }
}

.slider02 {
  position: relative;
}
.slider02 li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.slider02 li:nth-child(1) {
  z-index: 100;
}
.slider02 li:nth-child(2) {
  z-index: 99;
}
.slider02 li:nth-child(3) {
  z-index: 98;
}
.slider02 li:nth-child(4) {
  z-index: 97;
}
.slider02 li:nth-child(5) {
  z-index: 96;
}
.slider02 li:nth-child(6) {
  z-index: 95;
}
.slider02 li:nth-child(7) {
  z-index: 94;
}
.slider02 li:nth-child(8) {
  z-index: 93;
}
.slider02 li:nth-child(9) {
  z-index: 92;
}
.slider02 li:nth-child(10) {
  z-index: 91;
}
.slider02 li img {
  width: 100%;
  aspect-ratio: 1/0.51;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider02-pagination {
  width: 100%;
  max-width: 465px;
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 101;
  overflow-y: auto;
  background: var(--white);
}
@media screen and (max-width: 1300px) {
  .slider02-pagination {
    max-width: 100%;
    bottom: -20px;

  }
}
@media screen and (max-width: 500px) {
  .slider02-pagination {
    bottom: -40px;

  }
}
.slider02-pagination li {
  width: 100%;
  max-width: 45px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.slider02-pagination li img {
	display: block;
	width: 100%;
  /* max-width: 45px;
  height: 45px; */
	-o-object-fit: cover;
	object-fit: cover;
  aspect-ratio: 1 / 1;
	/* height: 100%; */
}

.search-result {
  min-width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 1300px) {
  .search-result {
    min-width: 53.2rem;
    max-width: calc(100% - 7rem);
  }
  .search-result.active {
    max-width: calc(100% - 33.8rem);
  }
}

.filter-wrap {
  width: 31.8rem;
  flex: 0 0 31.8rem;
  background: var(--white);
  z-index: 0;
  margin-right: 2.4rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
  transition: all 0.3s;
  height: calc(100vh - 115px);
  overflow: hidden;
}
.filter-wrap.active {
  width: 5rem;
  flex: 0 0 0;
}
.filter-wrap.active .inner {
  visibility: hidden;
  opacity: 0;
}
.filter-wrap .inner {
  visibility: visible;
  opacity: 1;
  height: 83vh;
  padding-bottom: 12.6rem;
  transition: opacity 1s;
}
.filter-wrap .btn-collapsible {
  background: var(--grayf0);
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-wrap .btn-collapsible img {
  display: block;
}
.filter-wrap .btn-collapsible.active {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.btn-type1 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8.6rem;
  background: white;
  width: 31.8rem;
  padding-left: 2rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05); /* 위쪽에만 그림자 */
  padding-right: 2.4rem;
}
.btn-type1.active {
  display: none;
}
.btn-type1 .btn-reset {
  border: 1px solid var(--grayc8);
  padding: 1rem;
  color: var(--gray6a);
  font-size: 1.4rem;
  font-weight: 700;
  width: 8rem;
}
.btn-type1 .btn-filtering {
  width: 100%;
  background: var(--main-darkblue, #051277);
  padding: 1rem;
  color: var(--background-white, #FFF);
  font-size: 1.4rem;
  font-weight: 700;
}

/* 이미지 컨테이너 스타일 */
.image-container {
	width: 100%;
	max-width: 600px; /* 최대 가로 크기 */
	margin: 0 auto;
	overflow: hidden;
}

/* 이미지 초기 상태 - 흐릿하고 불투명 */
.blur-load {
	width: 100px;
	height: auto;
	filter: blur(10px); /* 초기 흐림 정도 */
	opacity: 0; /* 초기 투명도 */
	transition: filter 1s ease-out, opacity 1s ease-out; /* 부드러운 효과 */
}

/* 이미지가 로드되었을 때 */
.blur-load.loaded {
	filter: blur(0); /* 흐림 제거 */
	opacity: 1; /* 투명도 제거 */
}

/*************** pager *****************/
.pager {
	text-align: center;
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}
.pager:after {content:""; display:block; clear:both;}
.pager li {padding: 4px 8px 3px;}
.pager a {
	width: 4rem;
	height: 4rem;
	display: flex;
	font-weight: 600;
	font-size: 1.5rem;
	justify-content: center;
	align-items: center;
	text-decoration:none;
	color:#B3B3B3;
	cursor:pointer;
}
.pager a.active{color: var(--main-navy);}
.pager .prev {
	background: url('../images/arrow_left.svg') no-repeat;
	background-size: 100% 100%;
	text-indent: -999999px;
}
.pager .next {
	background: url('../images/arrow_right.svg') no-repeat;
	background-size: 100% 100%;
	text-indent: -999999px;
}

.input-type1 { 
  display: block;
  height: 5.6rem;
  padding: 0px 18px;
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  
}

.member-wrap { 
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 16px;
}

.view-type1 { 
  font-size: 1.4rem;
  background: var(--grayf8);
  padding: 12px 16px;
}
.view-type1 .no-content { 
  color: var(--grayc8);
  font-size: 1.4rem;
}
.view-type1 .content { 
  color: var(--black00);
  
}
.line-or { 
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--graya0);
}
.line-or::before {
  display: block;
  content: "또는";
  position: absolute; 
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #A0A0A0;
  font-size: 1.6rem;
  background: var(--white);
  padding: 0 10px;
}
.id-pw { 
  display: flex;
  justify-content: center;
}
.id-pw a {
  position: relative;
  
}
.id-pw a + a { 
  margin-left: 2.8rem;
}
.id-pw a + a::before {
  position: absolute;
  top: 50%;
  left: -13.5px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background: var(--graye4);

}

.tab-type1 { 
  display: flex;
  justify-content: center;
}
.tab-type1 li a { 
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  height: 4.7rem;
  color: var(--gray8d);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%;
  border-bottom: 1px solid var(--blue00);
}
.tab-type1 li a.active { 
  background: var(--main-blue, #001DFF);
  color: var(--white);
  
}
.tab-type2 { 
  display: flex;
  justify-content: center;
  max-width: 1096px;
}
.tab-type2 li a { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 27.4rem;
  width: 100%;
  height: 7.2rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%;
}
.tab-type2 li a.active { 
  background: var(--blue00);
  color: var(--white);
  
}
@media screen and (max-width: 1000px) {
  .tab-type2 li a { 
    min-width: 10rem;
    font-size: 12px;
    height: 5rem;
  }
}

.tab-type3 { 
  display: flex;
  justify-content: start;
  gap: 1rem;
}
.tab-type3 li a { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 14.4rem;
  height: 4.6rem;
  color: var(--gray6a);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem;
  border: 1px solid var(--grayc8);
}
.tab-type3 li a.active { 
  color: var(--blue00);
  background: var(--grayf0);
  border: 1px solid var(--blue00);
}
.breadcrumbs-type1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
.breadcrumbs-type1 li {
  position: relative;
  color: var(--gray86);
  font-size: 1.4rem;
}
.breadcrumbs-type1 li + li::before {
  position: absolute;
  top: 50%;
  left: -15.5px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 6px;
  height: 12px;
  background: url(../images/ico_arrow_bread.svg) no-repeat center center / contain;
}
.breadcrumbs-type1 li.active {
  color: var(--black00);
  font-size: 1.4rem;
}
.num-blue { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    background: var(--blue00);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
}
.border-type1 { 
  width: 100%;
  height: .5px;
  background: var(--grayc8);;
}

.process-type1 { 
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
.process-type1 li { 
  position: relative;
}
.process-type1 li + li::before { 
  position: absolute;
  top: 50%;
  left: -4.5rem;
  display: block;
  content: "";
  width: 1rem;
  height: 2rem;
  background: url(../images/ico_arrow_bread_blue.svg) no-repeat center center / contain;
}
.process-type1 li .view-type1 { 
  min-height: 10.4rem;
  display: flex;
  align-items: center;

}
.process-type2 { 
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
.process-type2 .card { 
  background: var(--white);
  padding: 3rem 3rem;
  min-width: 30rem;
}

.profile-wrap { width: 100px; }
.profile-wrap .btn-delete { 
  color: var(--black00);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration-line: underline;
}
.profile-wrap .profile-view { 
  width: 10rem;
  height: 12rem;
  background: #838383;
  
}
.textarea-type1 { 
  display: block;
  
  border: 1px solid var(--graye4);
  background: #FFF;
  padding: 1.8rem;
  min-height: 12rem;
}
.textarea-type1::placeholder { 
  color: var(--grayc8);
}
.textarea-type2 { 
  display: block;
  
  border: 1px solid var(--graye4);
  background: #FFF;
  padding: 1.8rem;
  min-height: 12rem;
}
.textarea-type2::placeholder { 
  color: var(--grayc8);
}

.terms-list {
  padding: 4rem 3.4rem;
  border: 1px solid var(--graye4);
  border-radius: 4px;
}
.terms-list li:first-child {
  border-bottom: 1px solid var(--grayf4);
  padding-bottom: 2.4rem;
}
.terms-list li + li {
  padding-top: 2.4rem;
}
.check-wrap {
	display: flex;
	gap: 16px;
	align-items: center;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
/* 기본 체크박스 숨기기 */
.custom-checkbox input {
  display: none;
}
/* 커스텀 체크박스 */
.checkmark {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #CFCFCF;
  /* border-radius: 100%; */
  display: inline-block;
  position: relative;
  margin-right: 8px;
}
/* 체크 시 스타일 */
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  width: 15px;
  height: 12px;
  background: url(../images/ico_checked.svg) no-repeat center center/contain;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-checkbox2 {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}
.custom-checkbox2.type2 {
  font-weight: 500;
}
.custom-checkbox2.type2.ico-arrow a {
  display: block;
  position: relative;
  width: 100%;
}
.custom-checkbox2.type2.ico-arrow a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../images/ico_arrow_right_gray.svg) no-repeat center center;
}
.custom-checkbox2 input {
  display: none;
}
.custom-checkbox2 .checkmark {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--graye4);
  border-radius: 0;
  display: inline-block;
  position: relative;
  margin-right: 2.3rem;
}
.custom-checkbox2 input:checked + .checkmark::after {
  content: "";
  width: 15px;
  height: 12px;
  background: url(../images/ico_checked.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-sub { 
  position: relative;
}
.banner-sub img { 
  display: block;
  width: 100%;
  height: 377px;
  aspect-ratio: 1 / 0.1963;
  object-fit: cover;
}

.banner-sub .tab-type2 { 
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner-sub .banner-sub__title { 
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    position: absolute;
    top: calc(50% - 3rem) ;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    
}
@media screen and (max-width: 768px) {
  .banner-sub .banner-sub__title { 
    font-size: 28px;
  }
  .banner-sub img { 
    height: 180px;
  }
}

.post-view {}
.post-view .title {
  font-size: 2rem;
  border-bottom: 1px solid #ddd;
  padding: 1.6rem;
  
}
.post-view .content {
  font-size: 1.6rem;
  padding: 1.6rem;
  line-height: 160%;
}

.pagination { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul { 
  display: flex;
  align-items: center;
}
.pagination .btn-prev { 
  width: 4rem;
  height: 4rem;
  background: url(../images/ico_arrow_prev.svg);
}
.pagination .btn-next { 
  width: 4rem;
  height: 4rem;
  background: url(../images/ico_arrow_next.svg);
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #B3B3B3;
  font-size: 1.8rem;
}
.pagination li a.active {
  color: var(--blue00);
  font-weight: 600;
}
.price-list .title { 
  width: 10rem;
}
.underline { 
  text-decoration: underline;
}

@media screen and (max-width: 500px) {
  #vehicleDetails .total_price { 
    margin-top: 50px;
  }
}

#loadingLayer {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding-top: 20%;
}

.spinnoza {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db; /* 블루색 */
    border-radius: 50%;
    animation: spinz 1s linear infinite;
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
}

@keyframes spinz {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media screen and (max-width: 1000px) {
  #section7 .img-wrap .desc { 
    width: 100%;
  }
  .banner-txt-main.text.fz36 {
    font-size: 20px;
  }
  .banner-txt-sub.text.fz16 { 
    font-size: 12px;
  }
  .btn.primary2.lg { 
    min-width: auto;
    height: auto;
    padding: 1rem 1.6rem;
  }
  .btn.primary2.mt30 {
    margin-top: 10px; 
  }
}
@media screen and (max-width: 500px) {
  .section .inner .img-wrap .desc { 
    padding: 0 16px;
  }
  .section .inner .img-wrap img {
    height: 153px;
    object-fit: cover;
}
}
.layer { 
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 400;
}
.layer.active { 
  display: block;
}
.modal-gallery {
  display: none; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 401;
  width: 80%;
  padding: 40px 16px;
  background: #fff;
}
.modal-gallery.active {
  display: block; 
}
.modal-gallery img {
  display: block; 
  margin: 0 auto;
}
.btn-modal-close { 
  position: absolute;
  top: 16px;
  right: 16px;
}
.btn-modal-close img { 
  width: 30px;
}
.btn-modal-prev { 
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 40px;
}
.btn-modal-next { 
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 40px;
}
.btn-modal-prev img,
.btn-modal-next img { 
  display: block;
  width: 100%;
}
.progress-status {
  width: calc(100% - 400px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 0 auto;
  font-size: 14px;
  color: #333;
}

.progress-bar-wrap {
  flex: 1;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 10px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #051277;
  transition: width 0.3s ease;
}

.progress-counter {
  white-space: nowrap;
  min-width: 50px;
  text-align: right;
}


.pointer { 
  cursor: pointer;
}