@charset "utf-8";

/* header */
header {
  height: 71px;
  width: 100%;
  position: absolute;
  padding-top: 17px;
  z-index: 11;
}
header > .logo {
  padding-left: 20px;
  width: 100px;
}
header > .logo > a > img {
  width: 100px;
}
header > .logo > .mouse_over {
  display: none;
}
header > nav > #gnb {
  display: none;
}
header > #right_side_menu {
  display: none;
}
header > #mobile_right_side_menu {
  position: absolute;
  display: flex;
  top: 26px;
  right: 10px;
}
header > #mobile_right_side_menu > li {
  margin: 0 13px;
  width: 22px;
  height: 22px;
}
header > #mobile_right_side_menu > li > a {
  width: 100%;
  height: 100%;
  display: block;
}
header > #mobile_right_side_menu > .search {
  background: url(../images/search-icon.png) no-repeat 0 0/100%;
}
header > #mobile_right_side_menu > .menu {
  background: url(../images/menu-icon.png) no-repeat 0 0/100%;
}
header > #mobile_search_box {
  top: 0;
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header > #mobile_search_box > .box {
  width: 50%;
  text-align: center;
}
header > #mobile_search_box > .box > h5 {
  font-size: 20px;
}
header > #mobile_search_box > .box > #search_text {
  background-color: transparent;
  border: none;
  border-bottom: white 2px solid;
  width: 70%;
  height: 30px;
  color: white;
}
header > #mobile_search_box > .box > #search_text:focus {
  outline: none;
}
header > #mobile_menu {
  top: 0;
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}
header > #mobile_menu > .exit {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  right: 20px;
  top: 20px;
  border-radius: 50%;
  cursor: pointer;
}
header > #mobile_menu > .exit > div {
  background-color: #707070;
  position: absolute;
  transform: rotate(0deg);
  transition: all linear 0.3s;
  width: 70%;
  height: 2px;
  top: 50%;
  left: 7px;
}
header > #mobile_menu > .exit > div:first-child.active {
  transform: rotate(45deg);
}
header > #mobile_menu > .exit > div:last-child.active {
  transform: rotate(-45deg);
}
header > #mobile_menu > .menu_box {
  transition: all linear 0.5s;
  position: absolute;
  background-color: #fff;
  height: 100%;
  width: 70%;
}
header > #mobile_menu > .menu_box > ul {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
header > #mobile_menu > .menu_box > .lang {
  margin: 20px 0 0 20px;
}
header > #mobile_menu > .menu_box > .lang > li {
  margin-right: 5px;
}
header > #mobile_menu > .menu_box > .txt {
  font-size: 11px;
  text-align: center;
  margin: 10px auto 30px;
  font-weight: 400;
}
header > #mobile_menu > .menu_box > .login > li > a {
  display: block;
  height: 100%;
}
header > #mobile_menu > .menu_box > .login > li {
  width: 50%;
  height: 30px;
  text-align: center;
  border: #ccc solid 1px;
  line-height: 30px;
  font-family: "Noto Sans KR";
  font-size: 13px;
  font-weight: 400;
}
header > #mobile_menu > .menu_box > .login > li:not(:first-child) {
  border-left: none;
}
header > #mobile_menu > .menu_box > .menu > li {
  font-size: 12px;
  font-weight: 400;
  width: 50%;
  background-color: #f5f5f5;
  font-family: "Noto Sans KR";
  text-align: center;
  border: #ccc solid 1px;
  padding: 10px 0;
  cursor: pointer;
}
header > #mobile_menu > .menu_box > .menu > li:not(:first-child) {
  border-left: none;
}
header > #mobile_menu > .menu_box > .menu > li > ul {
  display: none;
}
header > #mobile_menu > .menu_box > .menu_list {
  width: 90%;
  margin: 10px auto;
  padding-left: 15px;
  font-size: 12px;
}
header > #mobile_menu > .menu_box > .menu_list > ul {
  display: none;
}
header > #mobile_menu > .menu_box > .menu_list > ul > li {
  padding: 8px 0;
}
/* main */

#main_slider div > .slide_txt > h2 {
  font-size: 36px;
  letter-spacing: 6px;
}
#main_slider div > .slide_txt > p {
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 80px;
}
#item_description {
  display: grid;
  grid-template: repeat(3, 1fr) / 1fr 1fr;
  margin-bottom: 100px;
}
#item_description > div > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  background: rgba(0, 0, 0, 0);
}
#item_description > div:hover {
  background-size: 110% 110%;
}
#item_description > div > a:hover {
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.3s;
}
#item_description > .bcs-t90_desc {
  background: url(../images/item-desc-1.jpg) no-repeat 0 0 /100% 100%;
  height: 50vw;
  grid-row: 1/2;
  grid-column: 1/3;
  overflow: hidden;
}
#item_description > .bcs-t90_desc > a > h3 {
  font-size: 30px;
}
#item_description > div:not(.bcs-t90_desc) > a > h3 {
  font-size: 20px;
}
#item_description > .bcs-t90_desc > a > p {
  font-size: 15px;
}
#best_review {
  position: relative;
}
#best_review > h1 {
  margin: 0 auto;
  width: fit-content;
  font-size: 45px;
  margin-bottom: 50px;
}
#best_review > .sticky_box {
  width: 100%;
  position: static;
  height: 100vh;
  background: url(../images/sticky-img.jpg) no-repeat 50% 0 / cover;
  color: white;
}
#best_review > .sticky_box > h3 {
  padding-top: 70%;
  font-size: 40px;
  width: 70%;
  margin: 0 auto 20px;
}
#best_review > .sticky_box > p {
  font-size: 15px;
  line-height: 1.3;
}
#best_review > .review_list {
  width: 90%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#best_review > .review_list > .review {
  width: 90%;
}
.marquee > .marquee_wrapper {
  font-size: 150px;
}
.bottom_banner {
  display: flex;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.bottom_banner > .banner {
  width: 100%;
  height: 300px;
  transition: background-size 0.5s;
}
.bottom_banner > .banner:nth-child(1n):hover {
  background-size: 110% 110%;
}
.bottom_banner > .banner > a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.bottom_banner > .banner > a > h5 {
  font-size: 2vw;
}
.bottom_banner > .banner > a > h3 {
  font-size: 4vw;
}
.bottom_banner > .banner > a > p {
  font-size: 14px;
}
.bottom_banner > .banner:first-child {
  background: url(../images/bottom-banner-1.jpg) no-repeat 50% 50%/100% 100%;
}
.bottom_banner > .banner:last-child {
  background: url(../images/bottom-banner-2.jpg) no-repeat 50% 50%/100% 100%;
}
#membership {
  margin-bottom: 100px;
}
#membership > h1 {
  font-size: 45px;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 40px;
}
#membership > ul {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-direction: column;
}
#membership > ul > li {
  width: 100%;
  height: 40vw;
  border: 2px solid;
  min-width: 200px;
  min-height: 200px;
}
#membership > ul > li:not(:last-child) {
  border-right: 2px solid;
  border-bottom: 0;
}
#membership > ul > li > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#membership > ul > li > a > h4 {
  font-size: 15px;
  margin-top: 20px;
}
#membership > ul > li > a > img {
  width: 10%;
}
#membership > ul > li > a > p {
  text-align: center;
  font-size: 14px;
}

/* footer */

footer {
  background-color: #050505;
  color: #fff;
}
footer a {
  color: white;
}
footer > .footer_wrapper > ul:first-of-type {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
  font-size: 14px;
}
footer > .footer_wrapper > ul > li {
  margin-right: 15%;
}
footer > .footer_wrapper > ul > li > h5 {
  font-size: 18px;
  margin-bottom: 30px;
}
footer > .footer_wrapper .customer_center > li > h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
footer > .footer_wrapper .customer_center > li:not(:first-child) {
  color: rgba(255, 255, 255, 0.5);
}
footer > .footer_wrapper .return_exchange > li {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
footer > .footer_wrapper .return_exchange > li > a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}
footer > .footer_wrapper .about > li {
  margin-bottom: 10px;
}
footer > .footer_wrapper .company_inform {
  display: flex;
  flex-wrap: wrap;
}
footer > .footer_wrapper .company_inform > li {
  margin-right: 10px;
  font-size: 12px;
}
footer > .footer_wrapper > p {
  margin: 0;
  width: 80%;
  margin: 10px auto 0;
  padding-bottom: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.fixed {
  top: 0 !important;
  position: fixed !important;
}
#mobile_search_box.on {
  display: flex;
}
#mobile_menu.on {
  display: flex;
}
@keyframes rotate_img {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
