<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  position: relative;
  z-index: 102;
  background-color: #fff;
  min-width: 1300px;
}
header .inner {
  width: 1300px;
  margin: 0 auto;
}
header .inner_wrap .sub_menu {
  text-align: right;
  height: 60px;
  line-height: 60px;
}
header .inner_wrap .sub_menu li {
  display: inline-block;
  position: relative;
}

header .inner_wrap .sub_menu li &gt; a {
  color: #181818;
  position: relative;
  padding: 0 16px;
}
header .inner_wrap .sub_menu li &gt; a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #ddd;
  position: absolute;
  top: 56%;
  right: 0;
  transform: translateY(-50%);
}
header .inner_wrap .sub_menu li:last-of-type a {
  padding: 0 0 0 16px;
}
header .inner_wrap .sub_menu li:last-of-type a::after {
  display: none;
}
header .inner_wrap .sub_menu .header_name {
  position: relative;
}
header .inner_wrap .sub_menu .header_name &gt; a span {
  font-family: ;
}
header .inner_wrap .sub_menu .name_hover {
  position: absolute;
  top: 50px;
  background-color: #e4f3f3;
  z-index: 1;
  text-align: left;
  line-height: 38px;
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 185px;
  display: none;
}
header .inner_wrap .sub_menu .name_hover a:hover {
  background-color: #f0f9f9;
  border-radius: 5px;
  transition: 0.3s;
}
header .inner_wrap .sub_menu .header_name:hover .name_hover {
  display: flex;
}
header .inner_wrap .sub_menu .name_hover::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background-color: #e4f3f3;
  display: inline-block;
  top: 0px;
  left: 50%;
  transform: rotate(46deg) translateX(-50%);
}
header .inner_wrap .sub_menu .name_hover a {
  display: inline-block;
  padding: 0 10px;
}
header .inner_wrap .sub_menu .name_hover a img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
header .inner_wrap .sub_menu .name_hover a span {
  font-size: 14px;
}
header .inner_wrap .nav_menu {
  border-bottom: 1px solid #e5e5e5;
}
header .inner_wrap .nav_menu.on {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
  min-width: 1590px;
}
header .inner_wrap .nav_menu .inner {
  align-items: center;
  height: 80px;
  display: flex;
}
header .inner_wrap .logo {
  width: 330px;
}
header .inner_wrap .logo img {
  width: 232px;
}
header .inner_wrap .menu {
  width: calc(100% - 330px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner_wrap .menu ul {
  display: flex;
}
header .inner_wrap .menu li {
  display: inline-block;
  text-align: center;
  width: 136px;
  height: 80px;
}

header .inner_wrap .menu li &gt; a {
  font-family: "Pretendard-Medium";
  font-size: 20px;
  line-height: 80px;
  height: 80px;
  display: inline-block;
  width: 100%;
}
header .inner_wrap .menu li &gt; a.on {
  color: #ff4f48;
}
header .inner_wrap .menu li &gt; a.active {
  color: #ff4f48;
  transition: 0.3s;
}
header .inner_wrap .menu li:hover a {
  color: #ff4f48;
  transition: 0.3s;
}
header .inner_wrap .left_btn {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .input_group {
  display: inline-block;
  position: relative;
}
header .input_group input {
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  width: 280px;
  padding: 10px 40px 10px 15px;
}
header .input_group button {
  background-color: inherit;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
}
header .input_group button img {
  width: 19px;
  vertical-align: middle;
}
header .input_group .autocomplete_header {
  position: absolute;
  background-color: #fff;
  width: 100%;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  top: 34px;
  padding: 15px 10px;
  z-index: 10;
  line-height: 24px;
  display: none;
}
header .input_group .autocomplete_header a {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    padding: 5px 10px;
    background-color: inherit;
}
header .input_group .autocomplete_header a b {
    color: #ff4f48;
    font-family: "Pretendard-SemiBold";
}
header .input_group .autocomplete_header a.on {
    background-color: #fff2f1;
    border-radius: 5px;
}
header .input_group .autocomplete_header a:hover {
    background-color: #fff2f1;
    border-radius: 5px;
}
header .heart_btn {
  display: inline-block;
  margin-left: 15px;
}
header .heart_btn img {
  width: 25px;
}
header .basket_btn {
  display: inline-block;
  margin-left: 15px;
  position: relative;
}
header .basket_btn img {
  width: 24px;
}

header .sub_wrap {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  display: none;
}
header .sub_wrap.on {
  display: block;
}
header .sub_inner {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  padding: 20px 0;
}
header .sub_inner .keyword {
  width: 330px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .sub_inner .keyword span {
  background-color: #ff534d;
  color: #fff;
  display: inline-block;
  width: 38px;
  height: 38px;
  font-size: 30px;
  line-height: 35px;
  border-radius: 50%;
}

header .sub_inner .keyword p {
  font-size: 14px;
  color: #ff534d;
  font-family: "Pretendard-Bold";
  margin-bottom: 30px;
  margin-top: 10px;
}
header .sub_inner .keyword .keyword_box {
  width: 300px;
}
header .sub_inner .keyword .keyword_box a {
  border: 1px solid #e5e5e5;
  border-radius: 13px;
  font-size: 13px;
  color: #818181;
  font-family: "Pretendard-Light";
  padding: 6px 10px;
  display: inline-block;
  margin: 1%;
}
header .sub_inner .keyword .keyword_box a:hover {
  background-color: #eee;
  transition: 0.3s;
}
header .sub_inner .depth01 {
  width: calc(100% - 330px);
  display: flex;
  justify-content: space-between;
}
header .sub_inner .depth01 .depth01_menu {
  display: flex;
}
header .sub_inner .depth01 ul {
  width: 136px;
  text-align: center;
}
header .sub_inner .depth01 ul:hover a span {
  color: #181818;
}
header .sub_inner .depth01 ul li a {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  padding: 8px 0;
}
header .sub_inner .depth01 ul li a:hover {
  transition: 0.3s;
  color: #000;
}
header .sub_inner .depth01 ul li a span {
  color: #818181;
  position: relative;
  z-index: 1;
}
header .sub_inner .depth01 ul li a:hover span {
  font-family: "Pretendard-Medium";
}
header .sub_inner .depth01 ul li a:hover span::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  background-color: #ffcebf;
  border-radius: 3px;
  width: auto;
  height: 7px;
  z-index: -1;
}
header .sub_inner .depth01 .ev_banner_wrap {
  width: 52%;
}
header .sub_inner .depth01 .event_banner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 16px;
}
header .sub_inner .depth01 .event_banner a {
  margin-left: 25px; overflow: hidden; border-radius: 20px;
}
header .sub_inner .depth01 .event_banner a:first-of-type {
  margin: 0;
}
header .sub_inner .depth01 .event_banner a:hover img {
    transform: scale(1.05);
    transition: all 0.2s ease;
}
header .sub_inner .depth01 .event_banner a img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
}
header .sub_inner .depth01 .ev_link a {
  display: inline-block;
  width: 100%;
  font-family: "GowunDodum";
  font-size: 15px;
  margin-top: 12px;
}
header .sub_inner .depth01 .ev_link a span {
  color: #ff4f48;
  font-family: "GowunDodum";
  font-weight: 600;
}
header .sub_inner .depth01 .ev_link a img {
  margin-left: 3px;
  vertical-align: bottom;
}
header .sub_inner .depth01 .ev_link a i {
  float: right;
  font-size: 18px;
}
.depth01 ul li:hover + .menu li a {
  color: red;
}
.header_dim {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  bottom: 0;
  display: none;
}
.header_dim.on {
  display: inline-block;
}
</pre></body></html>