/* ==========================================================
   WAK - Studio Won & Kim (static clone)
   ========================================================== */

:root{
  --bg: #ffffff;
  --ink: #111111;
  --muted: #8a8a8a;
  --line: #e6e6e6;
  --gap: 40px;
  --header-h: 84px;
  --ease: cubic-bezier(.19,1,.22,1);
  --logo-overflow: 103px; /* 187px ·Î°í - 84px Çì´õ ³ôÀÌ, Çì´õ ¾Æ·¡·Î Æ¢¾î³ª¿À´Â ¸¸Å­ */
  --logo-overflow-mobile: 6px; /* ¸ð¹ÙÀÏ 90px ·Î°í - 84px Çì´õ ³ôÀÌ */
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Helvetica Neue', Arial, 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

/* ---------------- Header ---------------- */
.site-header{
  _position: sticky;
  _top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
}

/* background layer separated from .site-header so backdrop-filter
   doesn't create a clipping context for overflowing children (logo) */
.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}

.logo{
  position: relative;
  z-index: 110;
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 12px;
  height: auto;
}

.logo img{
  width: 187px;
  height: 187px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.logo-text{
  margin-top: 32px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
}

.main-nav{
  display: flex;
  gap: 36px;
}

.main-nav a{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), opacity .25s var(--ease);
  opacity: .55;
}

.main-nav a:hover,
.main-nav a.active{
  opacity: 1;
  border-color: var(--ink);
}

.nav-phone{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  opacity: 1 !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-phone::before{
  content: "TEL ";
  color: var(--muted);
  font-weight: 400;
}

.nav-search{
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.nav-search input{
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  width: 110px;
  padding: 2px 0;
  color: var(--ink);
}
.nav-search input::placeholder{ color: var(--muted); }
.nav-search button{
  border: none;
  background: none;
  cursor: pointer;
  padding: 2px;
  color: var(--ink);
  display: flex;
  align-items: center;
  opacity: .8;
  transition: opacity .2s;
}
.nav-search button:hover{ opacity: 1; }

.nav-cart{
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink);
  opacity: .85;
  transition: opacity .2s;
}
.nav-cart:hover{ opacity: 1; }
.cart-count{
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #C8102E;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}

.menu-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span{
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* ---------------- Work grid ---------------- */
.work-grid{
  max-width: 1600px;
  margin: 0 auto;
  padding: calc(90px + var(--logo-overflow)) 48px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--gap);
  row-gap: 60px;
}

.work-item{
  display: block;
  position: relative;
}

.thumb{
  position: relative;
  width: 100%;
  __aspect-ratio: 4 / 5;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.thumb img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s var(--ease), transform 1s var(--ease);
}

.img-main{
  opacity: 1;
  _transform: scale(1);
}

.img-hover{
  opacity: 0;
  _transform: scale(1.06);
}

/* mouse-over image swap */
.work-item:hover .img-main,
.collection-item:hover .img-main{
  opacity: 0;
  _transform: scale(1.06);
}
.work-item:hover .img-hover,
.collection-item:hover .img-hover{
  opacity: 1;
  _transform: scale(1);
}

.caption{
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.caption h3{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

.caption h2{
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-align: right;
}

/* subtle caption reveal on hover, echoes the reference's interaction */
.caption h3,
.caption h2{
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.work-item:not(:hover) .caption h3,
.work-item:not(:hover) .caption h2{
  opacity: .75;
}
.work-item:hover .caption h3,
.work-item:hover .caption h2{
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------------- Footer ---------------- */
.site-footer{
  background: #F7F7F7;
  border-top: 1px solid var(--line);
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav,
.footer-legal{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-nav a{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .7;
  transition: opacity .2s;
}
.footer-nav a:hover{ opacity: 1; }

.footer-legal a{
  font-size: 11px;
  color: var(--muted);
  transition: color .2s;
}
.footer-legal a:hover{ color: var(--ink); }

.footer-info{
  width: 100%;
  order: 3;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.kb-escrow-badge{
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: opacity .2s, transform .2s;
}
.kb-escrow-badge:hover{
  opacity: .85;
  transform: translateY(-1px);
}
.kb-escrow-badge img{
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.footer-company{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-company p{
  margin: 0;
}
.footer-company strong{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.footer-copy{
  width: 100%;
  order: 4;
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted);
}

/* ---------------- Scroll-to-top ---------------- */
.scroll-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 90;
}
.scroll-top.visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================
   Product detail page (breadcrumb / hero / collection lists)
   ========================================================== */

.breadcrumb{
  max-width: 1600px;
  margin: 0 auto;
  padding: calc(24px + var(--logo-overflow)) 48px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb a{
  color: var(--muted);
  transition: color .2s;
}
.breadcrumb a:hover{ color: var(--ink); }
.breadcrumb span:last-child{ color: var(--ink); }

.product-hero{
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 48px 90px;
}

.product-hero-media{
  position: relative;
  width: 100%;
  _aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #f2f2f2;
}
.product-hero-media img{
  width: 100%;
  _height: 100%;
  height:auto;
  _object-fit: cover;
  display: block;
}

.product-hero-info{
  margin-top: 32px;
  max-width: 640px;
}
.product-hero-info h1{
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.product-hero-sub{
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.product-hero-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  max-width: 42ch;
}

.collection-section{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px 90px;
}

.collection-title{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 700;
}
.collection-title span{
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.collection-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--gap);
  row-gap: 48px;
}

.collection-item{
  display: block;
}
.collection-item .thumb{
  aspect-ratio: 1 / 1;
}
.collection-item .item-name{
  margin: 16px 0 2px;
  font-size: 13px;
  font-weight: 600;
}
.collection-item .item-meta{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1200px){
  .collection-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px){
  .breadcrumb{ padding: calc(20px + var(--logo-overflow-mobile)) 24px 0; }

  .product-hero{
    padding: 24px 24px 56px;
  }
  .product-hero-info{ margin-top: 24px; }
  .product-hero-info h1{ font-size: 30px; }

  .collection-section{ padding: 0 24px 56px; }
  .collection-grid{ grid-template-columns: 1fr; row-gap: 32px; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px){
  .work-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .site-header{ padding: 0 24px; }

  .logo-text{ display: none; }
  .logo img{
    width: 90px;
    height: 90px;
  }

  .main-nav{ display: none; }
  .menu-toggle{ display: flex; }

  .main-nav.open{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    z-index: 120;
  }
  .main-nav.open a{
    font-size: 14px;
  }
  .main-nav.open .nav-search{
    width: 100%;
  }
  .main-nav.open .nav-search input{
    width: 100%;
  }

  .work-grid{
    grid-template-columns: 1fr;
    padding: calc(60px + var(--logo-overflow-mobile)) 24px 40px;
    row-gap: 56px;
  }

  .site-footer{ padding: 32px 24px; }
  .footer-info{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .kb-escrow-badge img{ width: 60px; height: 60px; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}











/* ==========================================================
   ¿À½Ã´Â ±æ(company_location.html) ÆäÀÌÁö
   ========================================================== */

.location-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(24px + var(--logo-overflow)) 48px 100px;
}

.location-heading{
  margin-bottom: 36px;
}
.location-heading h1{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.location-heading p{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.location-map{
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 40px;
  background: #f2f2f2;
}
.location-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location-info-card h2{
  margin: 0 0 18px;
  padding-bottom: 14px;
  font-size: 17px;
  font-weight: 700;
  border-bottom: 2px solid #111;
}

.location-info-card ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-info-card ul li{
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
}
.location-info-card ul li span{
  display: inline-block;
  min-width: 60px;
  margin-right: 8px;
  font-weight: 700;
  color: var(--ink);
}
.location-info-card a{
  color: #444;
  border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.location-info-card a:hover{
  color: #C8102E;
  border-color: #C8102E;
}

.direction-list{
  gap: 16px !important;
}
.direction-list li{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.direction-list strong{
  font-size: 13px;
  color: var(--ink);
}

.direction-note{
  margin: 18px 0 0;
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width: 900px){
  .location-page{
    padding: calc(20px + var(--logo-overflow-mobile)) 24px 64px;
  }
  .location-heading h1{ font-size: 24px; }
  .location-map{ aspect-ratio: 4 / 3; margin-bottom: 32px; }
  .location-info{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================
   °øÁö»çÇ× ¸ñ·Ï(center_notice.html) / »ó¼¼(center_notice_view.html)
   ========================================================== */

.board-page,
.board-view-page{
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(24px + var(--logo-overflow)) 48px 100px;
}

.board-heading{
  margin-bottom: 32px;
}
.board-heading h1{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.board-heading p{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ---- ¸ñ·Ï Å×ÀÌºí ---- */
.board-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.board-table thead th{
  padding: 14px 12px;
  font-weight: 700;
  color: var(--ink);
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
  text-align: center;
}
.board-table tbody td{
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: #444;
  text-align: center;
}
.board-table .col-title{
  text-align: left;
}
.board-table .col-title a{
  color: var(--ink);
  font-weight: 500;
  transition: color .2s;
}
.board-table .col-title a:hover{
  color: #C8102E;
}
.board-table .col-no{ width: 60px; color: var(--muted); }
.board-table .col-date{ width: 120px; color: var(--muted); }
.board-table .col-views{ width: 90px; color: var(--muted); }

.board-pagination{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.board-pagination a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.board-pagination a:hover{
  background: #f2f2f2;
}
.board-pagination a.active{
  background: #111;
  color: #fff;
  font-weight: 700;
}

/* ---- »ó¼¼º¸±â ---- */
.board-view-header{
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 2px solid #111;
}
.board-view-header h1{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.board-view-meta{
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
}

.board-view-body{
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.board-view-body h3{
  margin: 28px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.board-view-body h3:first-child{ margin-top: 0; }
.board-view-body p{ margin: 0 0 14px; }
.board-view-body ul{
  margin: 0 0 14px;
  padding-left: 18px;
}
.board-view-body ul li{ margin-bottom: 6px; }

.board-view-nav{
  margin-bottom: 32px;
}
.board-view-nav-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #444;
  transition: color .2s;
}
.board-view-nav-item:hover:not(.disabled){
  color: #C8102E;
}
.board-view-nav-item.disabled{
  color: var(--muted);
  cursor: default;
}
.nav-dir{
  flex-shrink: 0;
  min-width: 48px;
  font-weight: 700;
  color: var(--ink);
}
.board-view-nav-item.disabled .nav-dir{ color: var(--muted); }

.board-view-actions{
  display: flex;
  justify-content: center;
}
.btn-board-list{
  display: inline-block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #111;
  border-radius: 4px;
  transition: transform .2s, box-shadow .2s;
}
.btn-board-list:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

@media (max-width: 900px){
  .board-page,
  .board-view-page{
    padding: calc(20px + var(--logo-overflow-mobile)) 24px 64px;
  }
  .board-table{ font-size: 12px; }
  .board-table .col-date,
  .board-table .col-views{ display: none; }
  .board-view-header h1{ font-size: 19px; }
}





/* ±âÁ¸ »çÀÌÆ® ºÎºÐ */

/* Á¤·Ä °ü·Ã */
.normal    {font-size:80% !important;font-weight:normal !important}
.al        {text-align:left !important}
.ac        {text-align:center !important}
.ar        {text-align:right !important}
.vt        {vertical-align:top !important}
.vb        {vertical-align:bottom !important}

.fl        {float:left}
.fr        {float:right}
.fc        {float:center}
.cl        {clear:left}
.cr        {clear:right}
.cb        {clear:both}

/* ÅØ½ºÆ® color °ü·Ã */
.b        {font-weight:bold !important}
.font0    {font:0/0 arial !important}
.txt_s    {font-size:80% !important}
.txt_big  {font-size:130% !important}
.txt_ls   {letter-spacing:-1px !important}
.txt_bb   {color:#000 !important}
.txt_bb2  {color:#2e2523 !important}
.txt_p    {color:#454545 !important}
.txt_r    {color:#df3c1c !important}

/* padding °ü·Ã */
.l01     {padding-left:1px}
.l02     {padding-left:2px}
.l03     {padding-left:3px}
.l04     {padding-left:4px}
.l05     {padding-left:5px}
.l07     {padding-left:7px}
.l08     {padding-left:8px}
.l09     {padding-left:09px}
.l10     {padding-left:10px}
.l15     {padding-left:15px}
.l16     {padding-left:16px}
.l18     {padding-left:18px}
.l19     {padding-left:19px}
.l20     {padding-left:20px}
.l25     {padding-left:25px}
.l30     {padding-left:30px}
.l35     {padding-left:35px}
.l40     {padding-left:40px}
.l42     {padding-left:42px}

.l50     {padding-left:50px}
.l60     {padding-left:60px}
.l69     {padding-left:69px}
.l70     {padding-left:70px}
.l80     {padding-left:80px}
.l90     {padding-left:90px}
.l100     {padding-left:100px}
.l206     {padding-left:206px}
.t01     {padding-top:1px}
.t02     {padding-top:2px}
.t03     {padding-top:3px}
.t04     {padding-top:4px}
.t05     {padding-top:5px}
.t06     {padding-top:6px}
.t07     {padding-top:7px}
.t08     {padding-top:8px}
.t10     {padding-top:10px}
.t11     {padding-top:11px}

.t15     {padding-top:15px}
.t17     {padding-top:17px}
.t20     {padding-top:20px}
.t23     {padding-top:23px}
.t24     {padding-top:24px}
.t25     {padding-top:25px}
.t27     {padding-top:27px}
.t29     {padding-top:29px}
.t30     {padding-top:30px}

.t35     {padding-top:35px}
.t38     {padding-top:38px}
.t40     {padding-top:40px}
.t50     {padding-top:50px}
.t60     {padding-top:60px}
.t140     {padding-top:140px}
.r05     {padding-right:5px}
.r10     {padding-right:10px}
.r11     {padding-right:11px}
.r15     {padding-right:15px}
.r16     {padding-right:16px}
.r18     {padding-right:18px}
.r20     {padding-right:20px}
.r25     {padding-right:25px}
.r27     {padding-right:27px}
.r30     {padding-right:30px}
.r35     {padding-right:35px}
.r40     {padding-right:40px}

.r62     {padding-right:62px}
.b01     {padding-bottom:1px}
.b02     {padding-bottom:2px}
.b03     {padding-bottom:3px}
.b04     {padding-bottom:4px}
.b05     {padding-bottom:5px}
.b10     {padding-bottom:10px}
.b15     {padding-bottom:15px}
.b20     {padding-bottom:20px}
.b25     {padding-bottom:25px}
.b30     {padding-bottom:30px}
.b40     {padding-bottom:40px}
.mr10     {margin-right:10px}
.mt1     {margin-top:1px}
.mt34     {margin-top:34px}


.tx1{font-family:"Nanum Gothic","NanumGothic"; color:#111111; font-size:11px;}
.tx2{font-family:"Nanum Gothic","NanumGothic"; color:#d7d7d7; font-size:11px;}
.tx3{font-family:"Nanum Gothic","NanumGothic"; color:#0088c5; font-size:11px; font-weight:bold;}
.tx4{font-family:"Nanum Gothic","NanumGothic"; color:#898989; font-size:11px;}
.tx5{font-family:"Nanum Gothic","NanumGothic"; color:#1ec6c2; font-size:11px;}
.tx6{font-family:"Nanum Gothic","NanumGothic"; color:#010101; font-size:20px; font-weight:bold;}
.tx7{font-family:"Nanum Gothic","NanumGothic"; color:#363636; font-size:12px;}
.tx8{font-family:"Nanum Gothic","NanumGothic"; color:#6e6e6e; font-size:11px;}
.tx9{font-family:"Nanum Gothic","NanumGothic"; color:#030303; font-size:11px;}
.tx10{font-family:"Nanum Gothic","NanumGothic"; color:#030303; font-size:16px;}
.tx11{font-family:"Nanum Gothic","NanumGothic"; color:#ec0505; font-size:14px; font-weight:bold;}
.tx12{font-family:"Nanum Gothic","NanumGothic"; color:#ec0505; font-size:11px;}
.tx13{font-family:"Nanum Gothic","NanumGothic"; color:#ffffff; font-size:11px;}
.tx14{font-family:"Nanum Gothic","NanumGothic"; color:#ffffff; font-size:12px; font-weight:bold;}
.tx15{font-family:"Nanum Gothic","NanumGothic"; color:#ffffff; font-size:16px; font-weight:bold;}
.tx16{font-family:"Nanum Gothic","NanumGothic"; color:#6e6e6e; font-size:11px; padding:4px;}
.tx17{font-family:"Nanum Gothic","NanumGothic"; color:#6e6e6e; font-size:15px; font-weight:bold;}
.tx18{font-family:"Nanum Gothic","NanumGothic"; color:#ec0505; font-size:21px; font-weight:bold;}
.tx19{font-family:"Nanum Gothic","NanumGothic"; color:#030303; font-size:18px; font-weight:bold;}
.tx20{font-family:"Nanum Gothic","NanumGothic"; color:#7b7b7b; font-size:11px;}
.tx21{font-family:"Nanum Gothic","NanumGothic"; color:#3963c5; font-size:11px;}
.tx22{font-family:"Nanum Gothic","NanumGothic"; color:#0153db; font-size:11px;}
.tx23{font-family:"Nanum Gothic","NanumGothic"; color:#6e6e6e; font-size:13px; line-height:20px;}
.tx24{font-family:"Nanum Gothic","NanumGothic"; color:#454545; font-size:15px; font-weight:bold; line-height:28px;}
.tx25{font-family:"Nanum Gothic","NanumGothic"; color:#6e6e6e; font-size:13px; font-weight:bold; line-height:20px;}
.tx26{font-family:"Nanum Gothic","NanumGothic"; color:#bd0000; font-size:15px; font-weight:bold; line-height:28px;}
.tx27{font-family:"Nanum Gothic","NanumGothic"; color:#0088c5; font-size:11px; font-weight:bold;}
.tx28{font-family:"Nanum Gothic","NanumGothic"; color:#bd0000; font-size:11px; font-weight:bold;}
.tx29{font-family:"Nanum Gothic","NanumGothic"; color:#8500bd; font-size:11px; font-weight:bold;}

.bla_in{ width:222px; height:27px; font-family:"Nanum Gothic","NanumGothic"; color:#949494; font-size:11px; padding-left:13px; line-height:27px; border:0; background:url(../img/btm/iput_bg.jpg) no-repeat;}
.bla_in1{ width:230px; height:27px; padding:4px 0 4px 11px;background:url(../img/btm/iput_bg.jpg) no-repeat;}
.bla_in2 { width:210px; background:#2d2d2d; border:0;}

.in       {border:#ddd solid 1px;height:34px;line-height:20px;background-color:#fff; color:#6e6e6e;}/*20170324*/
.in1       {border:#d5d5d5 solid 1px;height:30px;line-height:30px;width:250px; color:#626262;}/*20170324*/
.in1 optgroup, .in1 option  {color:#6e6e6e;}
.in2       {border:#dedede solid 1px;line-height:21px; color:#646464; width:600px; padding:5px;}
.in3       {border:#ddd solid 1px;height:30px;line-height:30px;background-color:#fff; color:#6e6e6e; padding-left:5px;}/*20170324*/
.in4       {border:#dddddd solid 1px;height:23px;line-height:25px;background-color:#fff; color:#6e6e6e; padding-left:5px;}

.s_in     {
	border:0;
	background-color:#ececec;
	color:#909090;
	font-size:90%;
	letter-spacing:-1px;
	width:100px;
	margin-top:4px;
}

ul {
  list-style-type: none;
}




/** main **/
.m_bor{border:1px solid #adadad;}
.h_on{ background:#25272d; width:200px; padding:7px;}
.mtx2{ font-size:11px; color:#c2c2c2; line-height:15px;}
.mtx1{ font-size:14px; color:#ffffff; font-weight:bold;}
.mtx3{ font-size:14px; color:#ff333b;}
.m_contents{ padding:0px 30px 0 30px; background:#ffffff;}

#vat_top2 {display:inline-block;font-family:"Nanum Gothic","NanumGothic","³ª´®°íµñ","Nanum Gothic Web";position:absolute;top:65px;left:0px;height:50px;margin-bottom:20px;width:100%}/*20170324*/
#vat_top2 p {font-size:30px;color:#303030;font-weight:600}/*20170324*/
#vat_top2 img {vertical-align:middle}/*20170324*/
/** list **/
.v{overflow:hidden;display:inline-block;}
.v01{background-position:0 0;}
.v02{background-position:0 0;}
.vtitle{height:39px;cursor:pointer;display:none} /*20170324*/
.vtitle em{}
#left h2 {display:none}/*20170324*/
.vcon{ border-top:1px solid #595c61;margin-top:85px;width:100%;overflow:hidden} /*20170324*/ /*20170405*/
.vconlist li{  float:left;width:200px;height:35px;border-bottom:1px dashed #ddd;}/*20170324*/ /*20170405*/
.vconlist li a {display:inline-block;padding-right:0px !important;line-height:25px !important;padding-top:5px;color:#959595 !important;font-size:13px !important} /*20170405*/
.vconlist li a:hover {border-bottom:2px solid #011f45;color:#011f45 !important;line-height:25px !important; font-weight:normal} /*20170405*/
.vconlist li.on a{border-bottom:2px solid #011f45;color:#011f45 !important;line-height:25px !important; font-weight:normal} /*20170405*/
.vconlist li:nth-child(5n) {background:none;}/*20170324*/ /*20170405*/
.vconlist li:last-child {background:none;}/*20170324*/
.swapjpg{ border:1px solid #ddd;border-bottom:0px;margin-top:85px;width:1010px;background:url("/img/main/border_b.png") bottom repeat-x;overflow:hidden;padding-left:10px} /*20170410*/
.swapjpg li{float:left;width:200px;height:35px;line-height:35px;text-align:center;border-bottom:1px dashed #ddd;}/*20170410*/
.swapjpg li a {display:inline-block;padding-right:0px !important;line-height:25px !important;padding-top:5px;color:#959595 !important;font-size:13px !important} /*20170410*/
.swapjpg li a:hover {border-bottom:2px solid #011f45;color:#011f45 !important;line-height:25px !important; font-weight:normal} /*20170410*/
.swapjpg li:nth-child(4n) {background:none;}/*20170324*/
.swapjpg li:last-child {background:none;}/*20170324*/
.a_inner {background-color:#f7f7f7}/*20170324*/
.a_inner img {padding:0px 15px;}
.q_inner {}
.q_inner:hover {color:#1b618e;}

.best_left .best {width:399px;height:442px;}
.best_right .best {width:192px;height:192px;}


.sub_tit{ height:35px; font-size:13px; color:#454545;line-height:25px;position:absolute;top:20px;left:0px;font-family:"Nanum Gothic","NanumGothic","³ª´®°íµñ";}/*20170324*//*20170406*/
.sub_tit strong{ font-size:13px; color:#626262;line-height:25px;}/*20170406*/
.best{ border:1px solid #ededed; float:left;}
.tab{ background:url(../img/list/tab_bg.jpg) repeat-x; height:34px;}

/** list_v **/
.re_d{ border:1px solid #e3e3e3; background:#e23f0d; padding:9px;}
.gr_a{border:1px solid #e3e3e3; padding:5px; width:521px;}
.gr_a1{border:1px solid #d5d5d5;}
.gr_a1 td{ padding:5px;}
.gr_a2{border-bottom:1px solid #d5d5d5;border-left:1px solid #d5d5d5;border-right:1px solid #d5d5d5; background:#f0f0f0; width:531px;}
.ic_bg{ width:20px; height:20px; line-height:20px; background:url(../img/list_v/ic_bg.jpg) no-repeat; padding-right:4px; text-align:right;}
.bor{border:1px solid #d5d5d5;}
.sel_bg{ background:url(../img/list_v/ba_bg.jpg) no-repeat; width:924px; height:58px; float:left;}
.bor1{border:1px solid #d5d5d5; padding:20px;}
.l_pup{ background:url(../img/pup/comm_bg.jpg) no-repeat; width:715px; height:515px; padding-left:57px;}

/** cart **/
.gr_a3{border:1px solid #e3e3e3; padding:5px;}
.gr_a4{border-bottom:1px solid #d5d5d5;border-left:1px solid #d5d5d5;border-right:1px solid #d5d5d5; background:#f7f7f7;}/*20170324*/
.bor2{border:1px solid #ededed; padding:13px 17px 13px 17px;margin-top:10px;}/*20170324*/
.bor3{border:1px solid #d5d5d5; background:#f0f0f0; width:374px; height:74px; }
.bor4{border:1px solid #ededed; padding:12px 24px 20px 24px;}
.bor5{border:1px solid #dddddd; padding:24px; width:400px;}

.cart_total {overflow:hidden;margin-left:395px;background:url(../img/cart/cart_total_bg.png) right   center  no-repeat;padding-right:30px;}
.cart_total>p {float:left;color:#252525;font-size:15px;font-weight:600;font-family:"Nanum Gothic","NanumGothic","³ª´®°íµñ","Nanum Gothic Web";margin:30px 0px;}
.cart_total>p>span {color:#20295c;font-size:15px;}
.cart_total_text2 {font-size:20px;color:#252525;font-weight:600}
.cart_total_text3 {color:#2c6c95;font-size:26px;font-weight:600;width:160px;display:inline-block;}/*20170324*/


/** cust **/
.re_cart_wrap {margin-top:90px;border-top:1px solid #595c61}
.si_bg{ background:url(../img/cust/si_bg.jpg) no-repeat; width:188px; height:40px; line-height:40px; font-size:13px; font-weight:bold; color:#ffffff; text-indent:17px}/*20170324*/
.si_bg1{ background:url(../img/cust/si_bg1.jpg) no-repeat; width:124px; height:30px; text-align:center; }
.si_bg1 a{font-weight:bold; color:#ffffff; text-align:center; font-size:15px; color:#ffffff; line-height:30px;display:block;}
.site {border:1px solid #ddd;margin-top:5px;min-height:438px;padding:12px 10px}/*20170324*/
.site li{ width:138px;  padding-left:6px; } /*20170324*/
.site li a{ line-height:25px; color:#454545; display:block;} /*20170324*/

/** my **/
.qui{ border-top:1px solid #d0d0d0;border-right:1px solid #ededed;border-left:1px solid #ededed;border-bottom:1px solid #ededed; padding:18px;}
.qui_in{border:1px solid #d0d0d0; padding:15px; width:734px;}
.drop_con {background:url(../img/cust/drop_con02.jpg) no-repeat;width:1020px;height:385px; margin-top:15px;padding-left:210px;padding-top:30px;} /*20170324*/

/** port **/
.bor6{border:1px solid #d2d2d2;}



/* 151102 Ãß°¡ »çÇ× */
.mainVisual { width: 100%; position: relative; margin: 10px 0;}
ul.topMbn { width: 1020px; position: relative; }
ul.topMbn:after { content: ""; clear:both; display: none; }
ul.topMbn li { float: left; margin-bottom: 10px; margin-right: 10px;}


/* ÅÂ±× 20170405 */
#tag_wrap {margin:20px 0px 8px ;overflow:hidden}/*20170406*/
#tag_wrap>li>a {font-size:13px;color:#333;font-size:13px;border:1px solid #333;margin-right:10px;margin-bottom:13px;border-radius:20px;padding:5px 10px;display:inline-block;float:left}/*20170406*/
#tag_wrap>li>a:hover {background-color:#333;color:#fff;}/*20170406*/
.top_submenu {border:1px solid #ddd;overflow:hidden;padding-left:10px;border-bottom:0px;font-size:13px;background:url("/img/main/border_b.png") bottom repeat-x;}/*20170406*/





.hashtag {margin:30px auto;clear:both;overflow:hidden;}
.hashtag li {float:left;margin:2px 10px 2px;}
.hashtag li a {color:blue;}

/* 2022-06-29 ¿ÀÈÄ 4:44:15 ¹è¼Ûºñ */
.css_sendinfo {
    min-width:300px;
    height: 30px;
    padding: 5px 0px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}
.css_sendinfo option{
    height: 30px;
    padding: 5px 0px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}

.collection-section img {max-width:100%;}


.fl ul,.fl li {
	list-style: none; /* Á¡(±âÈ£) ¾ø¾Ö±â */
}

.ufl {
	padding-left:0;
}

.best img {display: block;}