@import "reset.css";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');
@import url(//fonts.googleapis.com/earlyaccess/jejumyeongjo.css);

@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
font-family: 'Pretendard Variable';
font-weight: 45 920;
font-style: normal;
font-display: swap;
src: url('../../../packages/pretendard/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
}

@font-face {
font-family: 'LotteMartDream';
font-style: normal;
font-weight: 400;
src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff') format('woff');
}
@font-face {
font-family: 'LotteMartDream';
font-style: normal;
font-weight: 700;
src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff') format('woff');
}
@font-face {
font-family: 'LotteMartDream';
font-style: normal;
font-weight: 300;
src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff') format('woff');
}

.lottemartdream * {
font-family: 'LotteMartDream', sans-serif;
}


* {
  /* 드래그나 더블클릭 시에 텍스트가 선택이 되지 않도록 설정 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body::-webkit-scrollbar {
  display: none;
}

body{
  background: #ffffff;
  color: #3e3a39;
    margin: 0px;
    width: 100vw;
    font-family: 'Pretendard';
    overflow-x: hidden;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    margin: 0;
}

canvas {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 34vw;
}

/*메뉴 파트*/
/*메뉴 파트*/
.header {
  z-index: 500;
  font-size: 0.8333vw;
  width:100vw;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  color: #3e3a39;
  text-align:center;
  position:fixed;
  background-color: #ffffff88;
  top:0;
  left:0;
  height:4.5vw;
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}


.header:after {
  display:block;
  width:100%;
  content:"";
}

.down {
  background-color:#ffffff88;
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

.logo {
  text-decoration: none;
  margin-left: 8.3333vw;
}

.logo img{
  width: 1.5vw;
}

.navbar ul {
  list-style: none;
  display: flex;
  font-weight: 500;
}
 
.navbar a {
  text-transform: uppercase;
  text-decoration: none;
  color: #3e3a39;
  padding: 0.5vw 1vw 0.5vw 1vw;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.navbar li:nth-child(3) a{
  color: #eb7631;
}

.sns{
  list-style: none;
  display: flex;
  margin-right: 8.3333vw;
}
.sns img{
  width: 1.7vw;
}
.sns a{
  padding-right: 0.5vw;
  padding-left: 0.5vw;
}

.navbar ul li a:hover {
  color:#eb7631;
}


/*스크롤 액션*/

.scroll-action{
text-align: center;
margin-top: 4vw;
}
.scroll-action p{
z-index: 100;
position: relative;
}
.scroll-action a span {
position: absolute;
top: 42.1vw;
left: 50%;
width: 1vw;
height: 1vw;
margin-left: -0.5vw;
border-left: 1px solid #cac0be;
border-bottom: 1px solid #cac0be;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: sdb 2s infinite;
animation: sdb 2s infinite;
opacity: 0;
z-index: 100;
}
.scroll-action a span:nth-of-type(1) {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.scroll-action a span:nth-of-type(2) {
top: 42.8vw;
-webkit-animation-delay: .15s;
animation-delay: .15s;
}
.scroll-action a span:nth-of-type(3) {
top: 43.5vw;
-webkit-animation-delay: .3s;
animation-delay: .3s;
}
@-webkit-keyframes sdb {
0% {
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}
@keyframes sdb {
0% {
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}

.search{
float: left; 
color: #3e3a39; 
text-align: center; 
padding-top: 0.4vw; 
padding-bottom: 0.3vw; 
border: 1px solid #3e3a39; 
border-radius: 30vw; 
vertical-align: middle; 
padding-left: 1vw; 
padding-right: 1vw; 
height: 1.2vw; 
margin-top: 0.5vw; 
margin-right: 1vw; 
width: 6vw;
cursor: pointer;
}
.search p{
margin-top: 0.2vw;
margin-left: 0.5vw;
}
.search img{
width: 0.8vw; 
margin-right: 0.3vw;
float: left;
}

/*태그 팝업창*/

.tag h2 span{
font-size: 1.0417vw; /*20*/
font-family: 'Pretendard Variable';
}
.tag img{
width: 2vw;
display: block;
margin-left: auto;
margin-bottom: 1.8vw;
cursor: pointer;
}

.tag-box{
background-color: #f3c8a89f;
border-radius: 1vw; 
padding-left: 1.5vw;
padding-right: 1.5vw;
padding-top: 1.8vw;
padding-bottom: 1.8vw;
margin-bottom: 2vw;
}
.tag-box h2{
font-size: 1.7708vw; /*34*/
font-weight: 600;
font-family: 'Inter', sans-serif;
margin-bottom: 1vw;
color: #eb7631;
}
.tag-list{
display: flex;
flex-wrap: wrap;
}
.tag-list li{
background-color: #f7f0e1;
padding-left: 0.8vw;
padding-right: 0.8vw;
padding-top: 0.3vw;
padding-bottom: 0.3vw;
border-radius: 30vw;
margin-right: 0.6vw;
margin-bottom: 0.5vw;
box-shadow: 1px 2px 3px 2px #f1d0ac;
font-size: 0.9375vw;/*18*/
font-weight: 600;
cursor: pointer;
}
/*scroll bar*/
.tag::-webkit-scrollbar {
width: 3vw;  /* 스크롤바의 너비 */
}
.tag::-webkit-scrollbar-thumb {
height: 30%; /* 스크롤바의 길이 */
background: #eb7631; /* 스크롤바의 색상 */
border-radius: 30vw;
background-clip: padding-box;
border: 1.3vw solid transparent;
}
.tag::-webkit-scrollbar-track {
background: #f3c9a8;  /*스크롤바 뒷 배경 색상*/
margin-top: 5vw;
margin-bottom: 2vw;
margin-left: -1vw;
border-radius: 30vw;
background-clip: padding-box;
border: 1.3vw solid transparent;

}

.top-btn{
  position: fixed;
  z-index: 500;
  right: 4vw;
  bottom:3vw;
  cursor: pointer;
}
.top-btn img{
  width: 2.8vw;
 }

/**/
.top-list{
  position: absolute;
  margin-left: 27.5vw;
  margin-top: -2vw;

}
.top-list ul{
  display: flex;
  flex-wrap: wrap;
  width: 55vw;
  
}
.top-list li{
  font-size: 0.8333vw;/*16*/

  font-weight: 500;
  padding-right: 0.5vw;
  padding-left: 0.5vw;
  padding-bottom: 0.5vw;
  opacity: 0.4;
}
.top-list p{
  opacity: 0.4;
}
.top-list a{
  color: #3e3a39;
  text-decoration: none;
}


 
/**/
.section2{
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 10vw;
}
.detail-main {
  display: flex;
  justify-content: space-between
}

.detail-left img{
  width: 20vw;
}

/**/
.detail-center{
  width: 20vw;
  margin-left: 8vw;
  padding-top: 3vw;
}

.detail-center h6{
  font-size: 1.2500vw; /*24*/
  float: left;
  margin-top: 1.8vw;
  font-weight: 600;
  color: #eb7631;
  
}
.detail-center h4{
  font-size: 1.0417vw; /*20*/
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.detail-center h2{
  font-size: 2.0833vw; /*40*/
  line-height: 2.2vw;
  margin-top: 1.2vw;
  font-weight: 600;
  line-height: 2.3vw;
}
.detail-center h3{
  font-size: 1.5625vw; /*30*/
  font-family: 'Inter', sans-serif;
  margin-top: 0.5vw;
  font-weight: 500;
  line-height: 1.6vw;
}
.detail-center .shop-btn{
  font-size: 1.0417vw; /*20*/

  margin-top: 1.5vw;
  margin-left: 10vw;
  font-size: 1.0938vw; /*21px*/
  width: fit-content;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
  border-radius: 90px;
  background-color: #eb7631;
  color: #ffffff;
  padding-top: 0.3vw;
  padding-bottom: 0.3vw;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.shop-btn a{
  color: #fff;
  text-decoration: none;
}

.detail-text{
  margin-top: 1.8vw;
}
.detail-text h5{
  font-size: 1.0417vw; /*20*/
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.3vw;
  margin-top: 1vw;
}
.detail-text p{
  font-size: 0.8333vw; /*16*/

  font-weight: 500;
  line-height: 1.15vw;
  word-break:keep-all;
}

/**/
.detail-right{
  margin-left: 8vw;
  padding-top: 3vw;
}

.detail-right h2{
  font-size: 1.0417vw; /*20*/
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.product-list{
  display: flex;
  margin-top: 1.3vw;
  justify-content: space-around;
}
.product-list img{
  width: 3.5vw;
  object-fit: contain;
}
.product-text{

  font-size: 0.8333vw; /*16*/
  width: 18vw;
  height: 9vw;
  position: relative;
}
.product-text p{
  margin-bottom: 0.5vw;
  word-break: keep-all;
  font-weight: 500;
  line-height: 1.1vw;
}
.product-text p:nth-child(1){
  font-weight: 800;
 }
.product-text p:nth-child(3){
 font-size: 0.7292vw/*14*/;
}
.product-text a{
  text-decoration: none;
}
.product-btn{
  font-size: 0.8333vw; /*16px*/
  width: fit-content;
  border-radius: 90px;
  background-color: #eb7631;
  color: #ffffff;
  padding-top: 0.3vw;
  padding-bottom: 0.3vw;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;

  text-decoration: none;
}

/**/
.recipe-list{
  display: flex;
  margin-top: 1.3vw;
  justify-content: space-between
}
.recipe-list img{
  height: 12vw;
  width: 12vw;
  object-fit: cover;
}
.cover{
  position: absolute;
  text-align: center;
  color: #9c9c9c;
  z-index: 100;
  width: 12vw;
  height: 12vw;
  border-radius: 90%;
  background: linear-gradient( to bottom, rgba(255, 255, 255, 0), #231815 );
  top: 0;
  opacity: 0;
  cursor: pointer;
}
.cover:hover{
  opacity: 1;
 }
 .cover p{
  margin-top: 5vw;
  line-height: 1.2vw;
  color: #ffffff;
  font-size: 1.0417vw; /*20*/
 }
.recipe-list .recipe-1{
  margin-right: 1vw;
  position: relative;
  width: 12vw;
  height: 12vw;
  overflow: hidden;
  border-radius: 90%;
}

/**/

.section3{
  text-align: center;
  color: #3e3a39;
  padding-bottom: 10vw;
}
.section3 h2{
  font-size: 3.1250vw; /*60*/

  margin-top: 1.2vw;
  font-weight: 600;
}
.section3 p{

  font-size: 1.0417vw; /*20*/
  margin-top: 1.5vw;
  margin-bottom: 5vw;
  font-weight: 600;
}
.section3 img{
  width: 70vw;
}

/**/


iframe{
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  }

/*모바일*/
.detail-main-m{
  display: none;
  
  }
  .detail-main-m img{
    width: 52vw;
    margin-top: 0px;
  }
  .detail-main-m .detail-center{
    text-align: center;
    width:auto;
    margin-left: 0;
    padding-top: 36px;
  }
  .detail-main-m .detail-center h4{
    font-size: 14px;
  }
  .detail-main-m .detail-center h2{
    font-size: 20px;
    margin-top: 10px;
    line-height: normal;
  }
  .detail-main-m .detail-center h3{
    font-size: 18px;
    line-height: normal;
    margin-top: 4px;
  }
  .detail-main-m .detail-center h6{
    float: none;
    font-size: 14px;
    color: #3e3a39;
    margin-top: 32px;
    font-weight: 600;
  }
  .detail-main-m .detail-center .shop-btn{
    font-size: 14px;
    width: 80px;
    margin: auto;
    border-radius: 90px;
    background-color: #ee7623;
    color: #ffffff;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top:8px;
  }
  .detail-text-m{
    margin-top: 40px;
    padding: 48px 24px;
    background-color: #FAF5EE;
  }
  .detail-text-m h5:nth-child(1){
    margin-top: 0;
  }
  .detail-text-m h5{
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-top: 28px;
  }
  .detail-text-m p{
    font-size: 14px;
    line-height: 18px;
    margin-top: 4px;

    word-break: keep-all;
  }
  /**/
  .detail-right-m{
    padding: 48px 24px;
    padding-bottom: 80px;
  }
  .detail-right-m h2{
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
  }
  .detail-right-m .recipe-list{
    margin-top: 20px;
    justify-content: space-around;
    
  }
  .detail-right-m img{
    margin-top: 0;
    width: 37vw;
  }
  .detail-right-m .recipe-list .recipe-1{
    margin-right: 0px;
  }
  .detail-right-m  .product-list{
    margin-top: 20px;
    justify-content: space-around;
  }
  .detail-right-m  .product-list img{
    width: 18vw !important;
    margin-left: 30px;
    margin-right: 30px;
  }
  .detail-right-m .product-list p:nth-child(1){
    font-weight: 700;
  }
  .detail-right-m  .product-list p{
    font-size: 11px;
    margin-top: 8px;
    line-height: normal;
  }
  .detail-right-m .product-text{
    width: auto;
    height: auto;
    margin-right: 8px;
  }
  .detail-right-m .product-text a{
    text-decoration: none;
  }
  .detail-right-m  .product-btn{
    font-size: 12px;
    width: fit-content;
    border-radius: 90px;
    background-color: #eb7631;
    color: #ffffff;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    margin-left: 0;
    position: relative;
    text-decoration: none;
    margin-top: 10px;
  }


  .top-list-btn {
    display: none;
    margin: auto;
    text-align: center;
}
.top-list-btn img {
  width: 14px;
  margin-left: 8px;
  margin-bottom: 1px;
}
.hidden{
  display: flex !important;
}
.rotate{
  transform: rotate(180deg);
  transform-origin: 50% 35%;
}

/**/

@media (max-width: 540px){
  .section2{
    padding-top: 68px;
    padding-left: 0 !important;
    padding-right: 0;
    padding-bottom: 0;
  }
  .top-btn{
    display: none;
  }
  .top-list-btn{
    display: block;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
  }
  .top-list ul {
    width: auto;
    justify-content: center;
    margin-top: 28px;
    display: none;
}
/**/

  .detail-main{
    display: none;
  }
  .top-list{
    position: relative;
    margin: auto;
    padding-left: 36px;
    padding-right: 36px;
  }
  .top-list ul{
    width: auto;
    justify-content: center
  }
  .top-list li{
    font-size: 13px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 11px;
  }

  .detail-main-m{
    display: block;
  }
  .hover-bkx{
    display: none;
  }

  .section3 h2{
    margin-top: 0px;
    font-size: 16px;
  }
  .section3 h2 br{
    display: none;
  }
  .section3 p{
    font-size:12px;
    margin-top: 4px;
    margin-bottom: 32px;
  }
  .section3{
    padding-bottom: 100px;
  }
  iframe{
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    }
    .recipe-list .recipe-1 {
      width: 130px;
      height: 130px;
  }
  .recipe-list img{
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 350px){
  .detail-right-m .product-text {
    height: 220px;
}
 
  
}
