/* Reset */
*, *::before, *::after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  color:#191919;
  font-family: "Noto Sans KR", "Pretendard Variable", "Open Sans", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",  "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size:62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  animation: entry .3s ease forwards;
  opacity: 0;
  letter-spacing: -0.02em;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size:1.6rem;
}

a {
  color:inherit;
  outline: none;
  text-decoration: none;
}

ol,ul {
  list-style: none;
}

b, strong {
  font-weight:700;
}

img {
  max-width:100%;
}

button {
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

select {
  outline: none;
  border:1px solid transparent;
  font-family:inherit;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  /* background-size:9px auto; */
  /* background-image: url('/child/img/bbs/select.png'); */
  background-repeat:no-repeat;
  /* background-position:right 15px center; */
}

input, textarea {
  font-family:inherit;
  outline: none;
  border:1px solid transparent
}

:focus{
  outline:none;
}

::placeholder {
  color:#8c8c8c;
}

@-webkit-keyframes entry {
    to{opacity: 1;}
}

@keyframes entry {
    to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {
  /* select {
    background-size:7px auto;
    background-position:right 10px center;
  } */
}
@media screen and (max-width:576px) {

}


/* Overflow */
.hidden {
  overflow: hidden;
}


/* Display */
.sp{display:none;}
.mo{display:none;}

@media screen and (max-width:992px){
  .sp{display:block;}
  .pc{display:none;}
}

@media screen and (max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}


/* Ellip */
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}


/* Button */
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  cursor: pointer;
}

@media screen and (min-width:1201px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

/* Font Family */
.font-family--pretendard {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}


/* Container */
.container {
  max-width: 1430px;
  width:100%;
  margin:0 auto;
  padding:0px 15px;
}



/* Wrap */
.wrap {
  /* padding-top:104px; */
}

.sub-wrap {
  padding-top: 100px;
}

@media screen and (max-width:1200px) {
  .wrap,
  .sub-wrap {
    padding-top:60px;
  }
  
}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Main */
#main {
  min-height: calc(100vh - 340px);
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

span.d-block {
  display: block;
}

/* ----- S: Header ----- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .3s ease-out;
  box-sizing: border-box;
}

#header::after {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  z-index: 99;
}

#header .h-container {
  width: 100%;
  
  height: 100px;
}

/* Header Mobile */
#header .h-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100000;
}

#header .h-mobile-btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h-mobile-btn span {
  position: relative;
  margin: 0 auto;
}

#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  content: "";
  position: absolute;
}

#header .h-mobile-btn span,
#header .h-mobile-btn span::before,
#header .h-mobile-btn span::after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #191919;
}

#header .h-mobile-btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

#header .h-mobile-btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  background-color: #191919;
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}

#header .h-mobile-btn[aria-pressed="true"] span::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  background-color: #191919;
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}


/* header PC */
#header .h-inner {
  width: 100%;
  height: 100%;
}

#header .h-logo {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 272px;
  height: 28px;
  z-index: 99999;
}

#header .h-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/inc/logo.svg');
  transition: all .3s ease-out;
}

#header .h-member {
  display: flex;
  align-items: center;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

#header .h-member-menu {
  display: flex;
  align-items: center;
}

#header .h-member-menu  a {
  padding: 0 13px;
  font-size: 1.6rem;
  color: #fff;
  transition: color .3s ease-out;
}

#header .h-member-menu span {
  display: block;
  width: 2px;
  height: 19px;
  background-color: #fff;
  transition: background-color .3s ease-out;
}

#header .h-member-cart {
  width: 22px;
  height: 22px;
  margin-left: 16px;

}

#header .h-member-cart a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/child/img/inc/cart.svg');
  transition: background-image .3s ease-out ;
}

#header .h-main {
  position: relative;
  max-width: 1430px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#header .h-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: 90px;
}

#header .h-menu-list {
  height: 100%;
}

#header .h-menu-link  {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 39px;
  font-size: 1.8rem;
  /* font-weight: 700; */
  color: #fff;
}

#header .h-menu-link h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

#header .h-submenu {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  height: 0;
  background-color: #fff;
  overflow: hidden;
  transition: height .3s ease-out;
}

#header .h-submenu-container {
  display: flex;
  align-items: start;
  max-width: 1310px;
  width: 100%;
  padding: 144px 15px;
  margin: 0 auto;
}

#header .h-submenu-container li {
  width: 200px;
}

#header .h-submenu-container--01 li {
  width: 160px;
}

#header .h-submenu-link {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
}

#header .h-submenu-depth li a {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.25;
  transition: all .2s ease-out;
}


/* 스크롤 이벤트(sticky) */
#header[data-header="sticky"] {
  top:-100px;
}

/* 스크롤, 호버 효과 */
#header.active,
#header.header-active,
.sub-wrap #header {
  background-color: #fff;
}

.sub-wrap #header {
  border-bottom: 1px solid #dcdcdc;
}

#header.active::after,
#header.header-active::after,
.sub-wrap #header {
  display: block;
}

#header.active .h-menu-link,
#header.header-active .h-menu-link,
.sub-wrap #header .h-menu-link {
  color: #191919;
}

#header.active .h-logo a,
#header.header-active .h-logo a, 
.sub-wrap #header .h-logo a {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/child/img/inc/logo-on.svg');
}

#header.active .h-member-menu  a,
#header.header-active .h-member-menu  a,
.sub-wrap #header .h-member-menu a {
  color: #191919;
}

#header.active .h-member-menu span,
#header.header-active .h-member-menu span,
.sub-wrap #header .h-member-menu span {
  background-color: #191919;
}

#header.active .h-member-cart a,
#header.header-active .h-member-cart a, 
.sub-wrap #header .h-member-cart a {
  background-image: url('/child/img/inc/cart-on.svg');
}

#header .h-member-menu.mo {
  display: none;
}


@media(min-width:1201px) {
	#header .h-menu-list:hover .h-menu-link {
		font-weight:700;
	}

  #header .h-submenu-depth li:hover a {
    color: #1c2d56;
    font-weight: 700;
  }
    
  #header .h-menu-list.menu-active .h-submenu {
    height: 608px;
    border-bottom: 1px solid #dcdcdc;
  }
}

@media(max-width:1600px) {
  #header .h-logo {
    left: 15px;
  }
  
  #header .h-member {
    right: 15px;
  }
  
  #header .h-menu-link {
    padding: 0 30px;
  }
}

@media(max-width:1400px) {
  #header .h-logo {
    width: 218px;
    height: 22px;
  }
  
  #header .h-menu {
    margin-left: 50px;
  }
  
  #header .h-menu-link {
    padding: 0 20px;
  }
  
}

@media(max-width:1200px) {
  #header .h-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
    background-color: #fff;
  }
  
  #header[data-header-mobile="on"] .h-main {
    right: 0;
    height: 100vh;
    overflow: auto;
    padding-bottom: 0;
  }

  #header .h-menu-toggle[data-menu-link="true"] {
    color: #003a6f;
  }

  #header .h-menu-toggle[data-menu-link="true"]::before {
    background-color: #003a6f;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #header .h-menu-toggle[data-menu-link="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #header .h-container {
    height: 60px;
  }

  #header .h-logo a {
    background-image: url('/child/img/inc/logo-on.svg');
  }

  #header .h-mobile-btn span, 
  #header .h-mobile-btn span::before, 
  #header .h-mobile-btn span::after {
    background-color: #1c2d56;
  }
  
  #header .h-mobile {
    display: block;
  }
  
  #header .h-main {
    display: block;
    overflow-y: auto;
    z-index: 10000;
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 500px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 65px 20px;
    -webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
    z-index: 999;
  }
  
  #header .h-menu {
    flex-direction: column;
    align-items: start;
    height: auto;
    margin-left: 0;
  }
  
  #header .h-menu-list {
    width: 100%;
    height: auto;
  }
  
  #header .h-menu-link {
    position: relative;
    justify-content:start;
    width: 100%;
    padding: 10px 0;
    font-size: 1.6rem;
    color:#191919;
  }
  
  #header .h-menu-toggle::before,
  #header .h-menu-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    margin-top: -1px;
    background-color: #1c2d56;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  #header .h-menu-toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
  }
  

  #header .h-submenu  {
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-height: 0px;
    height: auto;
    overflow: hidden;
    padding: 0px;
    margin: -15px 0px 15px;
    text-align: left;
    background-color: transparent;
  }
  
  #header .h-submenu-container {
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 0 15px;
    border-left: 1px solid #aeaeae;
  }
  
  #header .h-submenu-container li {
    width: 100%;
  }
  
  #header .h-menu-toggle[data-menu-link="true"] + .h-submenu {
    visibility: visible;
    opacity: 1;
    max-height: fit-content;
    margin: 0px;
    padding: 5px 0;
  }
  
  #header .h-submenu-link {
    padding: 6px 0;
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  
  #header .h-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  #header .h-submenu-toggle::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #1c2d56;
    border-right: 1px solid #1c2d56;
    transform: rotate(45deg);
    transition: all .3s ease-out;
  }
  
  #header .h-submenu-depth {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    position: relative;
    top: unset;
    left: unset;
    overflow: hidden;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    padding: 0px;
    max-height: 0;
    height: auto;
    text-align: left;
    background-color: transparent;
    transition: all .2s ease-out;
  }
  
  #header .h-submenu-toggle[data-submenu-link="true"] + .h-submenu-depth {
    max-height: fit-content;
    opacity: 1;
    padding: 5px 0;
  }

  #header .h-submenu-toggle[data-submenu-link="true"]::after  {
    transform: rotate(225deg);
  }
  
  #header .h-submenu-depth li {
    width: 33.333%;
    padding: 0 5px;
  }

  #header .h-submenu-depth li a {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  
  #header .h-member {
    right: 60px;
    z-index: 99999;
  }
  
  #header .h-member-cart a {
    background-repeat: no-repeat;
    background-image: url('/child/img/inc/cart-on.svg');
  }
  
  #header .h-member-menu {
    display: none;
  }

  #header .h-member-menu.mo {
    display: flex;
    margin-left: -10px;
    margin-top: 20px;
  }
  
  #header .h-member-menu.mo a {
    padding: 0 10px;
    font-size: 1.4rem;
    color: #191919;
  }
  
  #header .h-member-menu span {
    width: 1px;
    height: 15px;
    background-color: #191919;
  }
  
  body.non-scroll {
    height: 100vh;
    overflow: hidden;
  }
}

/* ----- E: Header ----- */

/* ----- S: Footer ----- */
#footer {
  width: 100%;
  padding-bottom: 40px;
}

#footer .f-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#footer .f-heading {
  padding: 26px 0 23px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

#footer .f-heading .privacy-box {
  display: flex;
  align-items: center;
  margin-left: -15px;
}

#footer .f-heading .privacy-box a {
  padding: 0 15px;
  border-right: 1px solid #b5b5b5;
  font-size: 1.4rem;
  line-height: 1;
}

#footer .f-heading .privacy-box a:last-of-type {
  border-right: none;
}

#footer .f-heading .sns {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

#footer .f-heading .sns a {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .f-heading .sns a.youtube {
  width: 22px;
  height: 16px;
  background-image: url('/child/img/inc/youtube.svg');
}

#footer .f-heading .sns a.instagram {
  width: 20px;
  height: 19px;
  background-image: url('/child/img/inc/instagram.svg');
}


#footer .f-con {
  padding-top: 40px;
}

#footer .f-con .f-inner {
  display: flex;
  align-items: start;
  gap: 0 58px;
}

#footer .f-con .f-logo {
  width: 91px;
  height: 69px;
}

#footer .f-con .f-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/child/img/inc/logo-mini.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .f-con .f-title {
  margin-top: -5px;
  margin-bottom: 9px;
  font-size: 1.6rem;
  font-weight: 700;
}

#footer .f-con .f-address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 550px;
}

#footer .f-con .f-address p {
  margin-right: 16px;
  font-size: 1.4rem;
  line-height: 1.571;
}

#footer .f-con .customer-center {
  display: flex;
  align-items: start;
  gap: 0 20px;
}

#footer .f-con .customer-center p {
  margin-top: -5px;
  font-size: 1.6rem;
  font-weight: 700;
}

#footer .f-con .customer-center dd {
	display: flex;
	flex-direction: column;
	margin-bottom:5px;
}

#footer .f-con .customer-center dd em {
	font-style: normal;
	font-weight:900;
}

#footer .f-con .customer-center a {
  display: block;
  /* margin-bottom: 5px; */
  font-size: 2.2rem;
  font-weight: 700;
}

#footer .f-con .customer-center a.txt {
  font-size: 1.4rem;
}

#footer .f-con .customer-center span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.571;
}

#footer .copyright {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #626262;
}

@media(max-width:1200px) {
  #footer {
    padding-bottom: 35px;
  }
  
  #footer .f-heading {
    padding: 15px 0;
  }
  
  #footer .f-heading .privacy-box {
    margin-left: -15px;
  }
  
  #footer .f-heading .privacy-box a {
    padding: 0 15px;
  }
  
  #footer .f-heading .sns {
    gap: 0 15px;
  }
  
  #footer .f-heading .sns a.youtube {
    width: 22px;
    height: 16px;
  }
  
  #footer .f-heading .sns a.instagram {
    width: 20px;
    height: 19px;
  }
  
  #footer .f-con {
    padding-top: 35px;
  }
  
  #footer .f-con .f-inner {
    gap: 0 45px;
  }
  
  #footer .f-con .f-logo {
    width: 82px;
    height: 62px;
  }
  
  #footer .f-con .f-title {
    margin-top: -4px;
    margin-bottom: 9px;
  }
  
  #footer .f-con .f-address {
    max-width: 445px;
  }
  
  #footer .f-con .f-address p {
    margin-right: 12px;
  }
  
  #footer .f-con .customer-center {
    gap: 0 15px;
  }
  
  #footer .f-con .customer-center p {
    margin-top: -4px;
  }
  
  #footer .f-con .customer-center a {
    /* margin-bottom: 5px; */
    font-size: 2rem;
  }
  
  #footer .copyright {
    margin-top: 8px;
  }
}

@media(max-width:1024px) {
  #footer {
    padding-bottom: 30px;
  }
  
  #footer .f-heading {
    padding: 12px 0;
  }
  
  #footer .f-heading .privacy-box {
    margin-left: -12px;
  }
  
  #footer .f-heading .privacy-box a {
    padding: 0 10px;
    font-size: 1.3rem;
  }
  
  #footer .f-heading .sns {
    gap: 0 10px;
  }
  
  #footer .f-heading .sns a.youtube {
    width: 22px;
    height: 16px;
  }
  
  #footer .f-heading .sns a.instagram {
    width: 20px;
    height: 19px;
  }
  
  #footer .f-con .f-container {
    flex-direction: column;
    gap: 0;
  }
  
  #footer .f-con .f-inner {
    gap: 15px 0;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
  }
  
  #footer .f-con .customer-center  {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 30px;
  }
  
  #footer .f-con {
    padding-top: 30px;
  }
  
  #footer .f-con .f-inner {
    gap: 0 40px;
  }
  
  #footer .f-con .f-logo {
    width: 82px;
    height: 62px;
  }
  
  #footer .f-con .f-title {
    margin-top: -3px;
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
  
  #footer .f-con .f-address {
    max-width: 445px;
  }
  
  #footer .f-con .f-address p {
    margin-right: 10px;
    font-size: 1.3rem;
  }
  
  #footer .f-con .customer-center {
    gap: 0 10px;
  }
  
  #footer .f-con .customer-center p {
    margin-top: -3px;
    font-size: 1.4rem;
  }
  
  #footer .f-con .customer-center a {
    /* margin-bottom: 5px; */
    font-size: 1.8rem;
  }
  
  #footer .f-con .customer-center span {
    font-size: 1.3rem;
  }
  
  #footer .f-con .customer-center a.txt {
    font-size: 1.3rem;
  }

  #footer .copyright {
    margin-top: 8px;
    font-size: 1.3rem;
  }
}

@media(max-width:830px) {
  #footer .f-con .f-address {
    width: 355px;
  }
  
  #footer .f-con .f-address p {
    width: 100%;
  }
}

@media(max-width:768px) {
  #footer {
    padding-bottom: 25px;
  }
  
  #footer .f-heading {
    padding: 10px 0;
  }
  
  #footer .f-heading .privacy-box {
    margin-left: -10px;
  }
  
  #footer .f-heading .privacy-box a {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  
  #footer .f-heading .sns {
    gap: 0 10px;
  }
  
  #footer .f-heading .sns a.youtube {
    width: 20px;
    height: 14px;
  }
  
  #footer .f-heading .sns a.instagram {
    width: 18px;
    height: 17px;
  }
  
  #footer .f-con {
    padding-top: 25px;
  }
  
  #footer .f-con .f-container {
    flex-direction: column;
    gap: 0;
  }
  
  #footer .f-con .f-logo  {
    margin: 0 auto;
  }
  
  #footer .f-con .f-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    text-align: center;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
  }
  
  #footer .f-con .f-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
  
  #footer .f-con .f-address {
    width: 100%;
    text-align: center;
  }
  
  #footer .f-con .f-address p {
    margin-right: 0;
    font-size: 1.3rem;
  }
  
  #footer .f-con .customer-center  {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 30px;
  }
  
  #footer .f-con .customer-center p {
    width: 100%;
    margin-top: 0;
    font-size: 1.4rem;
    text-align: center;
  }
  
  #footer .f-con .customer-center a {
    /* margin-bottom: 0; */
    font-size: 1.8rem;
    text-align: center;
  }
  
  #footer .f-con .customer-center span {
    font-size: 1.3rem;
    text-align: center;
  }
  
  #footer .copyright {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    font-size: 1.3rem;
  }
}

@media(max-width:500px) {
  #footer {
    padding-bottom: 20px;
  }
  
  #footer .f-heading .privacy-box {
    margin-left: -8px;
  }
  
  #footer .f-heading .privacy-box a {
    padding: 0 8px;
    font-size: 1.1rem;
  }
  
  #footer .f-heading .sns {
    gap: 0 8px;
  }
  
  #footer .f-heading .sns a.youtube {
    width: 20px;
    height: 14px;
  }
  
  #footer .f-heading .sns a.instagram {
    width: 18px;
    height: 17px;
  }
  
  #footer .f-con {
    padding-top: 20px;
  }
  
  #footer .f-con .f-container {
    flex-direction: column;
  }
  
  #footer .f-con .f-inner {
    padding-bottom: 20px;
  }
 
#footer .f-con .f-title {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
  
  #footer .f-con .f-address p {
    font-size: 1.2rem;
  }
    
  #footer .f-con .customer-center  {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  
  #footer .f-con .customer-center p {
    font-size: 1.3rem;
  }
  
  #footer .f-con .customer-center a {
    font-size: 1.6rem;
  }
  
  #footer .f-con .customer-center span {
    font-size: 1.2rem;
  }
  
  #footer .f-con .customer-center a.txt {
    font-size: 1.2rem;
  }
  
  #footer .copyright {
    font-size: 1.2rem;
  }
}
/* ----- E: Footer ----- */

/* ----- S: Modal ----- */
.bbs-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  padding: 15px;
  display: none;
  visibility: hidden;
  transition: all .3s ease-out;
}


.bbs-modal .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 504px;
  width: 100%;
  /* height: 100%; */
  min-height: calc(100% - 160px);
  max-height: calc(100% - 160px);
  margin: 0 auto;
}

.bbs-modal .modal-inner {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  position: relative;
  max-height: none;
  height: 100%;
  width: 100%;
}

.bbs-modal .modal-content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.bbs-modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  z-index: 10;
  cursor: pointer;
}

.bbs-modal .modal-content .close::after, 
.bbs-modal .modal-content .close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background-color: #bbbbbb;
}

.bbs-modal .modal-content .close::after {
  width: 100%;
  height: 1px;
}

.bbs-modal .modal-content .close::before {
  width: 1px;
  height: 100%;
}

.bbs-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.bbs-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media(max-width:1200px) {
  .bbs-modal .modal-content .close {
    width: 20px;
    height: 20px;
  }
  
}

@media(max-width:768px) {
  .bbs-modal .modal-content .close {
    width: 15px;
    height: 15px;
  }
  
}
/* ----- E: Modal ----- */

/* ----- S: Modal Terms ----- */

.bbs-modal-terms .modal-inner,
.bbs-modal-note .modal-inner {
  background-color: #fff;
  padding: 40px 31px;
}

.bbs-modal-terms .title,
.bbs-modal-note .title {
  width: 100%;
  margin-bottom: 19px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #092956;
}

.bbs-modal-terms .title p,
.bbs-modal-note .title p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.bbs-modal-terms .text-area,
.bbs-modal-note .text-area {
  max-height: 474px;
  overflow-y: auto;
  padding: 16px 0;
  margin-bottom: 30px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.bbs-modal-terms .text-area p,
.bbs-modal-note .text-area p {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.bbs-modal-terms .text-area p:last-of-type,
.bbs-modal-note .text-area p:last-of-type {
  margin-bottom: 0;
}

.bbs-modal-terms .close-check,
.bbs-modal-note .close-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 45px;
  margin: 0 auto;
  background-color: #092956;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}

@media(max-width:1200px) {
  
  .bbs-modal-terms .modal-inner,
	.bbs-modal-note .modal-inner {
    padding: 35px 25px;
  }

  .bbs-modal-terms .title,
	.bbs-modal-note .title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .bbs-modal-terms .text-area,
	.bbs-modal-note .text-area {
    max-height: 400px;
    padding: 16px 0;
    margin-bottom: 25px;
  }
  
  .bbs-modal-terms .text-area p,
	.bbs-modal-note .text-area p {
    font-size: 1.5rem;
  }
  
  .bbs-modal-terms .close-check,
	.bbs-modal-note .close-check {
    width: 185px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media(max-width:1024px) {
  .bbs-modal-terms .modal-inner,
	.bbs-modal-note .modal-inner {
    padding: 30px 20px;
  }
  
  .bbs-modal-terms .title,
	.bbs-modal-note .title {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  
  .bbs-modal-terms .text-area,
	.bbs-modal-note .text-area {
    max-height: 370px;
    padding: 12px 0;
    margin-bottom: 20px;
  }
  
  .bbs-modal-terms .text-area p,
	.bbs-modal-note .text-area p {
    font-size: 1.4rem;
  }
  
  .bbs-modal-terms .close-check,
	.bbs-modal-note .close-check {
    width: 170px;
    height: 35px;
    font-size: 1.4rem;
  }
}

@media(max-width:768px) {
  .bbs-modal-terms .modal-inner,
	.bbs-modal-note .modal-inner {
    padding: 25px 15px;
  }
  
  .bbs-modal-terms .title,
	.bbs-modal-note .title {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .bbs-modal-terms .text-area,
	.bbs-modal-note .text-area {
    max-height: 340px;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  
  .bbs-modal-terms .text-area p,
	.bbs-modal-note .text-area p {
    font-size: 1.3rem;
  }
  
  .bbs-modal-terms .close-check,
	.bbs-modal-note .close-check {
    width: 155px;
    height: 30px;
    font-size: 1.3rem;
  }
}

@media(max-width:500px) {
  .bbs-modal-terms .modal-inner,
	.bbs-modal-note .modal-inner {
    padding: 20px 12px;
  }
  
  .bbs-modal-terms .title,
	.bbs-modal-note .title {
    font-size: 1.3rem;
  }
  
  .bbs-modal-terms .text-area,
	.bbs-modal-note .text-area {
    max-height: 310px;
    margin-bottom: 12px;
  }
  
  .bbs-modal-terms .text-area p,
	.bbs-modal-note .text-area p {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }
  
  .bbs-modal-terms .text-area p:last-of-type,
	.bbs-modal-note .text-area p:last-of-type {
    margin-bottom: 0;
  }
  
  .bbs-modal-terms .close-check,
	.bbs-modal-note .close-check {
    width: 140px;
    font-size: 1.2rem;
  }
}
/* ----- E: Modal Terms ----- */


.p-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.tag-new {
  border: 1px solid #959595;
}

.tag-best {
  border: 1px solid #ec6619;
  color: #ec6619;
}

.tag-class {
  color: #fff;
}

.tag-class_NS {
  background-color: #2d1505;
}

.tag-class_APlus {
  background-color: #512b10;
}

.tag-class_A {
  background-color: #6c411e;
}

.tag-class_BPlus {
  background-color: #9b6847;
}

.tag-class_B {
  background-color: #c18760;
}

.tag-used {
  background-color: #e4b799;
  color: #fff;
}

.tag-pickUp {
  /* width: 55px; */
  color: #fff;
  background-color: #191919;
}

@media(max-width:1200px){
  .p-tag {
    width: 50px;
    height: 18px;
    font-size: 1.2rem;
  }
  
  .tag-pickUp {
    /* width: 50px; */
  }
}

@media(max-width:1024px){
  .p-tag {
    width: 45px;
    height: 15px;
    font-size: 1.1rem;
  }
  
  .tag-pickUp {
    /* width: 45px; */
  }
}


@media(max-width:500px){
  .p-tag {
    font-size: 1rem;
  }
}

/* 2025.01.14 추가 */
.b-blue {
  color: #fff;
  border-color: #092956;
  background-color: #092956;
}

.b-gray {
  color: #fff;
  border-color: #999;
  background-color: #999;
}



/* 2025.04.29 추가 퍼블 */
.bbs-modal .fm-pretendard {
	font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.bbs-modal .fs-20 {
	font-size:2rem;
}

.bbs-modal .fs-24 {
	font-size:1.2rem;
}

.bbs-modal .fs-28 {
	font-size:2.8rem;
}

.bbs-modal .fs-36 {
	font-size:1.8rem;
}

.bbs-modal .text-blue {
	color:#002fb0;
}

.bbs-modal .text-blue2 {
	color:#337cff;
}

.bbs-modal .mb-20 {
	margin-bottom:8px;
}

.bbs-modal .mb-30 {
	margin-bottom:14px;
}

.bbs-modal .underline {
	width: 100%;
	height:1px;
	margin:20px 0px;
	background-color: #bfbfbf;
}

.bbs-modal .modal-container--receipt {
	display: block;
	max-width:500px;
	overflow-y: auto;
}

.bbs-modal .modal-container--receipt .receipt-modal-close {
	display: block;
	position: absolute;
	top:10px;
	right:10px;
	width:40px;
	height:40px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,.15);
	overflow: hidden;
	z-index: 10;
	cursor: pointer;
	transform: rotate(45deg);
}

.bbs-modal .modal-container--receipt .receipt-modal-close::after, 
.bbs-modal .modal-container--receipt .receipt-modal-close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background-color: #bbbbbb;
}

.bbs-modal .modal-container--receipt .receipt-modal-close::after {
  width: 50%;
	height: 1px;
}

.bbs-modal .modal-container--receipt .receipt-modal-close::before {
	width: 1px;
  height: 50%;
}

.bbs-modal .receipt-area {
	background-color: #f5f5f5;
	padding:20px;
}

.bbs-modal .receipt-wrap {
	padding:20px;
	background-color: #fff;
	border:1px solid #bfbfbf;
}

.bbs-modal .receipt-caution {
	font-size:1rem;
	font-weight:600;
	color:#959595;
	margin-top:10px;
}

.bbs-modal .receipt-table .row-group {
	display: flex;
	flex-wrap: wrap;
	margin:-5px;
}

.bbs-modal .receipt-table .row {
	flex:1 1 50%;
	max-width:50%;
	padding:5px;
}

.bbs-modal .receipt-table .row-100 {
	flex:1 1 100%;
	max-width:100%;
}

.bbs-modal .receipt-table .row-wrap {
	display: flex;
	align-items: center;
}

.bbs-modal .receipt-table .th {
	width:60px;
	font-size:1.1rem;
	font-weight: 500;
	color:#626262;
}

.bbs-modal .receipt-table .td {
	width: calc(100% - 60px);
	font-size:1.1rem;
}

.bbs-modal .receipt-table .td-big {
	font-size:1.4rem;
}

.bbs-modal .receipt-table .td-bold {
	font-weight:700;
}

.bbs-modal .receipt-amounts {
	padding:20px 30px;
	background-color: #f5f5f5;
}

.bbs-modal .receipt-amounts dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bbs-modal .receipt-amounts dt {
	font-size:1.1rem;
	font-weight:500;
	color:#626262;
}

.bbs-modal .receipt-amounts dd {
	font-size:1.1rem;
	font-weight: 700;
}

.bbs-modal .receipt--basic .title {
	font-size:1.1rem;
	font-weight:700;
	color:#337cff;
}

.bbs-modal .receipt--basic .table {
	display: flex;
	flex-wrap: wrap;
	margin:-5px;
}

.bbs-modal .receipt--basic .row {
	flex:1 1 50%;
	max-width:50%;
	padding:5px;
}

.bbs-modal .receipt--basic .row-100 {
	flex:1 1 100%;
	max-width: 100%;
}

.bbs-modal .receipt--basic .row-wrap {
	display: flex;
	align-items: center;
}

.bbs-modal .receipt--basic .th {
	width: 60px;
	font-size:1.1rem;
	font-weight:500;
	color:#626262;
}

.bbs-modal .receipt--basic .td {
	width: calc(100% - 60px);
	font-size:1.1rem;
	font-weight:600;
}

.bbs-modal .receipt--basic .td em {
	font-style: normal;
	color:#959595;
}

@media screen and (max-width:1200px) {
	/* .bbs-modal .fs-20 {
		font-size:1.8rem;
	}
	
	.bbs-modal .fs-24 {
		font-size:2rem;
	}
	
	.bbs-modal .fs-36 {
		font-size:2.8rem;
	}

	.bbs-modal .receipt-caution {
		font-size:1.8rem;
	}

	.bbs-modal .receipt-table .th {
		font-size:1.8rem;
	}
	
	.bbs-modal .receipt-table .td {
		font-size:1.8rem;
	}

	.bbs-modal .receipt-table .td-big {
		font-size:2.4rem;
	}

	.bbs-modal .receipt--basic .title {
		font-size:1.8rem;
	}

	.bbs-modal .receipt--basic .th {
		font-size:1.8rem;
	}

	.bbs-modal .receipt--basic .td {
		font-size:1.8rem;
	}

	.bbs-modal .receipt-amounts dt {
		font-size:1.8rem;
	}

	.bbs-modal .receipt-amounts dd {
		font-size:1.8rem;
	} */
}

@media screen and (max-width:1024px) {
	/* .bbs-modal .mb-20 {
		margin-bottom:12px;
	}
	
	.bbs-modal .mb-30 {
		margin-bottom:20px;
	}

	.bbs-modal .receipt-caution {
		margin-top:6px;
	}

	.bbs-modal .receipt-area {
		padding:16px;
	}

	.bbs-modal .receipt-wrap {
		padding: 16px;
	}

	.bbs-modal .receipt-table .row-group {
		margin:-6px;
	}
	
	.bbs-modal .receipt-table .row {
		padding:6px;
	}

	.bbs-modal .receipt--basic .table {
		margin:-6px;
	}
	
	.bbs-modal .receipt--basic .row {
		padding:6px;
	}

	.bbs-modal .receipt-amounts {
		padding:30px 40px;
	}

	.bbs-modal .underline {
		margin:30px 0px;
	} */
}

@media screen and (max-width:768px) {
	/* .bbs-modal .fs-20 {
		font-size:1.6rem;
	}
	
	.bbs-modal .fs-24 {
		font-size:1.8rem;
	}
	
	.bbs-modal .fs-36 {
		font-size:2.4rem;
	}

	.bbs-modal .receipt-caution {
		font-size:1.6rem;
	}

	.bbs-modal .receipt-table .th {
		width:80px;
		font-size:1.6rem;
	}
	
	.bbs-modal .receipt-table .td {
		width: calc(100% - 80px);
		font-size:1.6rem;
	}

	.bbs-modal .receipt-table .td-big {
		font-size:2rem;
	}

	.bbs-modal .receipt--basic .title {
		font-size:1.6rem;
	}

	.bbs-modal .receipt--basic .th {
		width:80px;
		font-size:1.6rem;
	}

	.bbs-modal .receipt--basic .td {
		width: calc(100% - 80px);
		font-size:1.6rem;
	}

	.bbs-modal .receipt-amounts {
		padding:24px;
	}

	.bbs-modal .receipt-amounts dt {
		font-size:1.6rem;
	}

	.bbs-modal .receipt-amounts dd {
		font-size:1.6rem;
	}

	.bbs-modal .underline {
		margin:20px 0px;
	} */
}

@media screen and (max-width:600px) {
	.bbs-modal .mb-20 {
		margin-bottom:8px;
	}
	
	.bbs-modal .mb-30 {
		margin-bottom:12px;
	}

	/* .bbs-modal .fs-20 {
		font-size:1.2rem;
	}
	
	.bbs-modal .fs-24 {
		font-size:1.4rem;
	}
	
	.bbs-modal .fs-36 {
		font-size:1.8rem;
	} */

	.bbs-modal .modal-container--receipt .receipt-modal-close {
		top:6px;
		right:6px;
		width: 30px;
		height:30px;
	}

	.bbs-modal .receipt-area {
		padding:10px;
	}

	.bbs-modal .receipt-wrap {
		padding:10px;
	}

	.bbs-modal .receipt-caution {
		margin-top:4px;
	}
/* 
	.bbs-modal .receipt-caution {
		font-size:1.2rem;
	} */

	.bbs-modal .receipt-table .row-group {
		margin:-3px;
	}

	.bbs-modal .receipt-table .row {
		flex: 1 1 100%;
		max-width:100%;
		padding: 3px;
	}
	
	.bbs-modal .receipt-table .th {
		/* width: 100%; */
		/* margin-bottom:4px; */
		/* font-size:1.2rem; */
	}

	.bbs-modal .receipt-table .td {
		/* width: 100%; */
		/* font-size:1.2rem; */
	}

	.bbs-modal .receipt-table .td-big {
		/* font-size:1.4rem; */
	}

	.bbs-modal .receipt--basic .title {
		/* font-size:1.2rem; */
	}

	.bbs-modal .receipt--basic .row {
		flex:1 1 100%;
		max-width: 100%;
	}

	/* .bbs-modal .receipt--basic .th {
		font-size:1.2rem;
	}

	.bbs-modal .receipt--basic .td {
		font-size:1.2rem;
	} */

	.bbs-modal .receipt-amounts {
		padding:16px;
	}

	/* .bbs-modal .receipt-amounts dt {
		font-size:1.2rem;
	}

	.bbs-modal .receipt-amounts dd {
		font-size:1.2rem;
	} */

	.bbs-modal .underline {
		margin:12px 0px;
	}
}