/* 초기화 */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
  font-family: 'Noto Sans CJK KR', sans-serif;
	font-size: 62.5% !important;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .3s ease forwards;
  opacity: 0;
}

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;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#A4A4A4;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


.hidden {
	overflow: hidden;
}

.w100{
  width: 100%;
}
/* 블라인드 */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sm {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}


/* 블록 */
.d-block {
	display: block;
}
.d-inline-block {
	display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
	-webkit-line-clamp: 1;
}

.clamp-2 {
	-webkit-line-clamp: 2;
}


/* 컨테이너 */
.container {
	max-width:1400px;
	width: 95%;
	margin:0 auto;
  position: relative;
}

.container.w505{
  max-width: 505px;
}
.container.w1840{
  max-width: 1840px;
}


section.section{
  padding: 120px 0;
}
section.section.pt-0{
  padding-top: 0;
}
section.section.pb-0{
  padding-bottom: 0;
}

section.section.py-100{
  padding: 100px 0;
}
section.section.last{
  padding-bottom: 150px;
}

section.bg01{
  background-color: #efeff6;
}

@media all and (max-width:1024px){
  section.section{
    padding: 100px 0;
  }

  section.section.py-100{
    padding: 80px 0;
  }
  section.section.last{
    padding-bottom: 130px;
  }
}

@media all and (max-width:768px){
  section.section{
    padding: 80px 0;
  }

  section.section.py-100{
    padding: 60px 0;
  }
  section.section.last{
    padding-bottom: 100px;
  }
}
@media all and (max-width:576px){
  section.section{
    padding: 60px 0;
  }

  section.section.py-100{
    padding: 40px 0;
  }
  section.section.last{
    padding-bottom: 60px;
  }
}

/* 메인 */
#main {
}

/* 헤더 */
/*header*/
#header{
  background-color: #fff;
}

#header .head-top {
  border-bottom: 1px solid #dcdcdc;
}
#header .head-top .container{
  display: flex;
  justify-content: flex-end;
}
#header .user-href-area{
  display: flex;
  align-items: center;
}
#header .user-href-area .user-href{
  padding: 15px;
  position: relative;
}
#header .user-href-area .user-href + .user-href:before{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  content: '';
  background-color: #191919;
}
#header .user-href-area .user-href:last-child{
  padding-right: 0;
}

#header .head-bot .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .head-air-box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#header .head-air-box .head-air{
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);

}
#header .head-air-box .logo{
  left: 0;
}
#header .head-air-box .right-href{
  right: 0;
}
#header .right-href .href-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f1ef;
}


#header .gnb{
  width: 100%;
}

#header .gnb > ul{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
#header .gnb > ul > li{
  position: relative;
}
#header .gnb > ul > li > a{
  display: block;
  padding: 30px 40px;
}

#header .gnb > ul > li:hover > a{
  font-weight: 700;
}

#header .gnb > ul > li:hover .depth02{
  opacity: 1;
  visibility: visible;
}
#header .gnb .depth02{
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
}
#header .gnb .depth02 a{
  display: block;
  text-align: center;
  padding: 5px 0;
  font-size: 1.6rem;
}

/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 20px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 10px 0;
  background-color: #37308e;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.04em;
}

.m_menu .login_box a:first-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box > ul > li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width:1600px){
  #header .gnb > ul > li > a{
    padding: 30px 20px;
  }
}
@media all and (max-width:1400px){
  #header .gnb > ul > li > a{
    padding: 20px 10px;
  }

}
@media all and (max-width:1200px){
  #header .gnb > ul > li > a{
    font-size: 1.4rem;
  }
  #header .gnb .depth02 a{
    font-size: 1.4rem;
  }
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: flex;
  }
  #header .gnb,
  #header .head-air-box .right-href {
    display: none;
  }

  #header .head-bot{
  }
  #header .head-air-box{
    position: unset;
    width: auto;
  }
  #header .head-air-box .head-air{
    position: unset;
    transform: none;
  }

  #header .user-href-area .user-href{
    padding: 10px;
    font-size: 1.4rem;
  }
}

/* footer */
#footer{
  padding: 45px 0;
  border-top: 1px solid #dcdcdc;
}

#footer .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .foot-info ul{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 0 18px;
}
#footer .foot-info ul li{
  position: relative;
}
#footer .foot-info ul li + li:before{
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #191919;
  content: '';
}

#footer .con-tact li{
  display: flex;
  align-items: center;
  gap: 10px;
}

#footer .con-tact li .icon{
  height: 13px;
  min-width: 15px;
  width: 15px;
}
#footer .con-tact li .icon-01{
  background: url(/shop/asset/img/common/foot_icon01.png)no-repeat center center;
}
#footer .con-tact li .icon-02{
  background: url(/shop/asset/img/common/foot_icon02.png)no-repeat center center;
}

@media all and (max-width:1024px){
  #footer .container{
    flex-wrap: wrap;
    gap: 20px 0;
  }
  #footer .container > div{
    width: 100%;
  }
}

.more-btn-area{
  display: flex;
  align-items: center;
}

.more-btn-area.center{
  justify-content: center;
}

.more-btn-area .more-btn{
  text-align: center;
  width: 180px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap:20px;
}


.more-btn-area .more-btn.ico-plus:hover:after{
  transform: rotate(180deg);
}
.more-btn-area .more-btn.ico-plus:after{
  content: '';
  width: 13px;
  height: 13px;
  background: url(/shop/asset/img/icon/ico-plus.png)no-repeat center center;
  display: block;
  transition: .5s;
}



.more-btn-area .more-btn.bg-blue{
  background-color: #37308e;
}


/* 제품 리스트 */
.item-btn-area{
  display: flex;
  gap: 5px 10px;
}
.item-btn-area .item-btn{
  display: block;
  padding: 5px 17px;
  border-radius: 20px;

}
.item-btn-area.bg-white .item-btn{
  background-color: #fff;
  border: 1px solid #d2d2d2;

}
.item-btn-area .item-btn.on{
  background-color: #37308e;
  color: #fff;
  font-weight: 700;
}


.item-common-list{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.item-common-list.item04 .item-area-box{
  width: calc(25% - 21px);
}

.item-area-box .item-img{
  aspect-ratio: 1/1;
  border-radius: 20px;
  position: relative;
  border: 1px solid #dcdcdc;

}
.item-area-box .item-img img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  max-width: 90%;
  max-height: 90%;
  width: fit-content;
  height: fit-content;
}
.item-area-box .item-img.bg-gray{
  background-color: #f5f5f5;
}
.item-area-box .item-img.bg-white{
  background-color: #fff;
}

.item-area-box .item-info .item-txt{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.item-area-box .item-price li{
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-area-box .item-price li + li{
  margin-top: 10px;
}

.item-area-box .item-price .item-ptit{
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12.5px;
}
.item-area-box .item-price .item-ptit.bg-gray{
  color: #191919;
  background-color: #dcdcdc;
}
.item-area-box .item-price .item-ptit.bg-blue{
  color: #fff;
  background-color: #37308e;
}

.item-area-box .item-flex{
  display: flex;
  align-items: center;
  gap: 50px;
}


.item-area-box .item-flex .item-img{
  width: 280px;
  min-width: 280px;
}

.item-area-box .item-flex .item-info{
  width: calc(100% - 320px);
}

.product-btn-area{
  background-color: #f3f1ef;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px 20px;
}

.product-btn-area .scroll-x-box{
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
}
.product-btn-area .pro-btn{
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #d2d2d2;
  padding: 5px 19px;
}
.product-btn-area .pro-btn.on{
  font-weight: 700;
  background-color: #37308e;
  color: #fff;
}

@media all and (max-width:1024px){
  .item-btn-area{
    overflow-x: auto;
    gap: 0 5px;
  }
  .item-common-list{
    gap: 20px;
  }

  .item-common-list.item04 .item-area-box{
    width: calc(33.333% - 15px);
  }
}

@media all and (max-width:768px){
  .item-area-box .item-flex{
    gap: 20px;
  }

  .item-area-box .item-flex .item-info{
    width: calc(100% - 300px);
  }
}

@media all and (max-width:576px){
  .item-area-box .item-flex{
    flex-direction: column;
  }

  .item-area-box .item-flex .item-img{
    width: 100%;
    min-width: none;
  }

  .item-area-box .item-flex .item-info{
    width: 100%;
  }
}

@media all and (max-width:576px){
  .item-common-list{
    gap: 20px 10px;
  }

  .item-common-list.item04 .item-area-box{
    width: calc(50% - 5px);
  }
}

.no-css-zone {
    all: unset; /* 상속된 모든 스타일을 해제하고 브라우저 기본값으로 설정 */
}

/* 내부의 모든 태그도 초기화하고 싶을 때 */
.no-css-zone * {
    all: unset;
}
