@charset "utf-8";

:root{
  --main-yellow: #FFD900;
  --main-pink: #EE9DC2;
  --nav-color: #E868A3;
  --main-brown: #AB8A50;
}

/*bg*/

header .main-bg{
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/main-bg.png) no-repeat center top 0;
  width: 100%;
  height: 1000px;
  z-index: -10;
}



@media(max-width:1024px){


  header .main-bg{
    display: none;
  }

  header .tablet-bg{
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/tablet-bg.png) no-repeat center top 0;
  width: 100%;
  height: 1010px;
  z-index: -10;
}

}

@media(max-width:765px){

  header .tablet-bg{
  display: none;
}

  header .mobile-bg{
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/bg/mobile-bg.png) no-repeat center top 0;
    width: 100%;
    height: 1000px;
    z-index: -10;
  }
}


/*main-banner*/

.main-swiper{
  width: 454px;
  height: 454px;
  position: absolute;
  top: 10%;
  right: 14%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
}

.main-swiper ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner{
  height: 900px;
  width: 100%;
  position: relative;
}

.main-banner h1{
  color: #fff;
  font-family: "Jomhuria", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 137px;
  position: absolute;
  top: 220px;
  left: 325px;
  line-height: 0.8;
  animation: fadeSlideRight 1.5s ease-out 0.8s forwards;
}

@keyframes fadeSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


@media(max-width:1600px){
  .main-swiper{
  width: 454px;
  height: 454px;
  right: 5%;
}

.main-banner h1{
  font-size: 117px;
  left: 125px;
}
}

@media(max-width:1300px){
  .main-swiper{
  width: 404px;
  height: 404px;
  right: 5%;
}

.main-banner h1{
  font-size: 100px;
  left: 55px;
}
}

@media(max-width:1024px){
  .main-swiper{
  width: 420px;
  height: 420px;
  right: 13%;
  top: 6%;
}

.main-banner h1{
  font-size: 120px;
  left: 55px;
  top: 480px;
}
}

@media(max-width:765px){
  .main-swiper{
  width: 326px;
  height: 326px;
  right: 13%;
  top: 7%;
}

.main-banner h1{
  font-size: 93px;
  left: 55px;
  top: 400px;
}
}


/*new-menu*/
.new-menu{
  margin: 100px 232px 240px 232px;
  position: relative;
}

.new-menu h2{
  display: inline-block;
  font-size: 52px;
  color: #000;
  font-family: "Jersey 20", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 35px;
  position: relative;
}

.new-menu h2::before{
  content: "";
  display: block;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background-color: var(--main-pink);
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -10;
}

.new-menu .new-swiper li img{
  width: 100%;
}

.new-menu .new-swiper li{
  border: 1.75px solid var(--main-brown);
  height: 409px;
  position: relative;
  cursor: pointer;
}

.new-menu .new-swiper li p.name{
  font-family: 'Paperlogy-7Bold';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  color: #6E5428;
  font-size: 16px;
  padding: 10px 20px;
}

.new-menu .new-swiper li p.detail{
  font-size: 12px;
  color: #464646;
  line-height: 1.4;
  padding: 10px 40px 0 20px;
}

.new-menu .new-swiper li .more{
  width: 40px;
  height: 40px;
  border: 1.75px solid var(--main-brown);
  background: url(../img/more.png) no-repeat center;
  background-size: 15px 15px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
}

.new-menu .new-swiper li .more:hover{
  background: #e0cba79f url(../img/more.png) no-repeat center;
  background-size: 15px 15px;
}

.new-menu .swiper-button-next,
.new-menu .swiper-button-prev {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: 50; 
}

.new-menu .swiper-button-next {
  top: 60%;
  right: -40px; 
  background: rgba(254 , 232 , 128, 0.85) url(../img/slide-arrow.png) no-repeat center;
  background-size: 29px 17px;
}

.new-menu .swiper-button-prev {
  top: 60%;
  left: -40px; 
  background: rgba(254 , 232 , 128, 0.85) url(../img/slide-arrow-left.png) no-repeat center;
  background-size: 29px 17px;
}

.new-menu .swiper-button-next::after,
.new-menu .swiper-button-prev::after {
  display: none;
}

@media(max-width:1400px){

  .new-menu{
  margin: 100px 150px 180px 150px;
}

  .new-menu .new-swiper li img{
    width: 73%;
    height: 65%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
}

@media(max-width:1200px){

  .new-menu{
  margin: 80px 0px 130px 106px;
}
}

@media(max-width:1024px){

  .new-menu{
  margin: 80px 0px 130px 106px;
}

  .new-menu .new-swiper li img{
    width: 68%;
    height: 60%;
  }

  .new-menu .swiper-button-next,
  .new-menu .swiper-button-prev {
    display: none;
  }

  .new-menu h2{
  font-size: 45px;
  margin-bottom: 35px;
}

.new-menu h2::before{
  width: 55px;
  height: 55px;
}
}

@media(max-width:765px){

  .new-menu{
  margin: 50px 0px 130px 50px;
}

  .new-menu .new-swiper li img{
    width: 78%;
    height: 70%;
  }

  .new-menu .new-swiper li p.detail{
  padding: 10px 76px 0 20px;
}

}

/*best-menu*/
.best-menu{
  margin: 100px 232px 268px 232px;
  position: relative;
}

.best-menu h2{
  display: inline-block;
  font-size: 52px;
  color: #000;
  font-family: "Jersey 20", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 35px;
  position: relative;
}

.best-menu h2::before{
  content: "";
  display: block;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background-color: var(--main-yellow);
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -10;
}

.best-menu .best-swiper li img{
  width: 100%;
}

.best-menu .best-swiper li{
  border: 1.75px solid var(--main-brown);
  height: 409px;
  position: relative;
  cursor: pointer;
}

.best-menu .best-swiper li p.name{
  font-family: 'Paperlogy-7Bold';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  color: #6E5428;
  font-size: 16px;
  padding: 10px 20px;
}

.best-menu .best-swiper li p.detail{
  font-size: 12px;
  color: 464646;
  line-height: 1.4;
  padding: 10px 40px 0 20px;
}

.best-menu .best-swiper li .more{
  width: 40px;
  height: 40px;
  border: 1.75px solid var(--main-brown);
  background: url(../img/more.png) no-repeat center;
  background-size: 15px 15px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  cursor: pointer;
  transition: all 0.4s;
}

.best-menu .best-swiper li .more:hover{
  background: #f1e1c59f url(../img/more.png) no-repeat center;
  background-size: 15px 15px;
}

.best-menu .swiper-button-next,
.best-menu .swiper-button-prev {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: 50; 
}

.best-menu .swiper-button-next {
  top: 60%;
  right: -40px; 
  background: rgba(254 , 232 , 128, 0.85) url(../img/slide-arrow.png) no-repeat center;
  background-size: 29px 17px;
}

.best-menu .swiper-button-prev {
  top: 60%;
  left: -40px; 
  background: rgba(254 , 232 , 128, 0.85) url(../img/slide-arrow-left.png) no-repeat center;
  background-size: 29px 17px;
}

.best-menu .swiper-button-next::after,
.best-menu .swiper-button-prev::after {
  display: none;
}

@media(max-width:1400px){

  .best-menu{
  margin: 100px 150px 220px 150px;
}

  .best-menu .best-swiper li img{
    width: 73%;
    height: 65%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
}

@media(max-width:1200px){

  .best-menu{
  margin: 80px 0px 220px 106px;
}
}

@media(max-width:1024px){

  .best-menu{
  margin: 80px 0px 220px 106px;
}

  .best-menu .best-swiper li img{
    width: 68%;
    height: 60%;
  }

  .best-menu .swiper-button-next,
  .best-menu .swiper-button-prev {
    display: none;
  }

  .best-menu h2{
  font-size: 45px;
  margin-bottom: 35px;
}

.best-menu h2::before{
  width: 55px;
  height: 55px;
}
}

@media(max-width:765px){

  .best-menu{
  margin: 50px 0px 220px 50px;
}

  .best-menu .best-swiper li img{
    width: 78%;
    height: 70%;
  }

  .best-menu .best-swiper li p.detail{
  padding: 10px 76px 0 20px;
}

}


/*online-shop*/

.online-shop {
  text-align: center;
  margin-bottom: 268px;
}

 .cont-tit-01, .cont-tit-02{
  display: inline-block;
  font-size: 52px;
  color: #000;
  font-family: "Jersey 20", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin-bottom: 80px;
}


.cont-tit-01::before, .cont-tit-02::before{
  content: "";
  display: block;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  left: -35px;
  z-index: -10;
}

.cont-tit-01::before{
  background-color: var(--main-pink);
}

.cont-tit-02::before{
  background-color: var(--main-yellow);
}

.online-shop .shop-swiper{
  padding-top: 50px;
}

.online-shop .shop-swiper .shop-img{
  width: 100%;
  height: 282.5px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 1.43px 0px 8.61px 5.74px rgba(0 , 0 , 0, 0.05);
  transition: all 0.4s ease;
  transform: scale(0.95);
}

.online-shop .shop-swiper .shop-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px; 
}

.shop-swiper .swiper-slide-active .shop-img {
  transform: scale(1.1) translateY(-20px); 
  transition: all 0.4s ease;
}

.online-shop .shop-swiper li p{
  font-size: 15px;
  margin-top: 18px;
  line-height: 1.3;
  transition: all 0.4s;
}

.shop-swiper .swiper-slide-active p{
   font-family: 'Paperlogy-6SemiBold';
    font-weight: 600;
    font-style: normal;
    color: var(--nav-color);
}

.online-shop .shop-swiper .swiper-scrollbar{
    display: inline-block;
    width: 60%;
    height: 3px;
    position: static;
    margin: 50px auto;
    background-color: rgb(0, 0, 0,0.1);
}

.online-shop .shop-swiper .swiper-scrollbar-drag{
    background-color: var(--main-pink);
}

@media(max-width:1400px){
  .online-shop .shop-swiper .shop-img{
  height: 319px;
}
}

@media(max-width:1200px){
  .online-shop .shop-swiper .shop-img{
  height: 282.5px;
}
}

@media(max-width:1024px){
  .online-shop .shop-swiper .swiper-scrollbar{
    display: none;
}
  .online-shop{
    margin-bottom: 220px;
  }

}

@media(max-width:765px){
  .online-shop .shop-swiper .shop-img{
  height: 324px;
}

.online-shop .shop-swiper .shop-img{
  transform: scale(1);
}

.shop-swiper .swiper-slide-active .shop-img {
  transform: scale(1); 
}
}



/*signature*/

/*signature-desktop*/
.signature {
  height: 650px;
  text-align: center;
  margin-bottom: 168px;
  background: url(../img/bg/signaturetea-bg_desktop.png) no-repeat center bottom 120px;
}

.signature  ul.signature-desktop{
  display: flex;
  justify-content: space-between;
  margin: 0 280px;
}

.signature  ul.signature-desktop li{
  width: 160px;
  cursor: pointer;
}

.signature  ul.signature-desktop li img{
  width: 100%;
}

.signature  ul.signature-desktop li p{
  font-size: 18px;
}

.signature .signature-img_01{
  transform: rotate(-6.44deg);
}

.signature .signature-img_02{
  transform: rotate(7.24deg);
}

.signature .signature-img_03{
  transform: rotate(4.37deg);
}

.signature .signature-img_04{
  transform: rotate(-11.08deg);
}

.signature .signature-img_05{
  transform: rotate(8.65deg);
}

.signature ul.signature-mobile{
  display: none;
}

/* 개별 흔들림 애니메이션 */
@keyframes wiggle_01 {
  0%, 100% { transform: rotate(-6.44deg); }
  50%      { transform: rotate(-2.44deg); }
}

@keyframes wiggle_02 {
  0%, 100% { transform: rotate(7.24deg); }
  50%      { transform: rotate(11.24deg); }
}

@keyframes wiggle_03 {
  0%, 100% { transform: rotate(4.37deg); }
  50%      { transform: rotate(8.37deg); }
}

@keyframes wiggle_04 {
  0%, 100% { transform: rotate(-11.08deg); }
  50%      { transform: rotate(-7.08deg); }
}

@keyframes wiggle_05 {
  0%, 100% { transform: rotate(8.65deg); }
  50%      { transform: rotate(12.65deg); }
}

/* hover 시 애니메이션 실행 */
.signature .signature-img_01:hover {
  animation: wiggle_01 0.6s infinite ease-in-out;
}

.signature .signature-img_02:hover {
  animation: wiggle_02 0.6s infinite ease-in-out;
}

.signature .signature-img_03:hover {
  animation: wiggle_03 0.6s infinite ease-in-out;
}

.signature .signature-img_04:hover {
  animation: wiggle_04 0.6s infinite ease-in-out;
}

.signature .signature-img_05:hover {
  animation: wiggle_05 0.4s infinite ease-in-out;
}


@media(max-width:1400px){
  .signature  ul.signature-desktop{
  margin: 0 150px;
}
}

@media(max-width:1200px){
  .signature  ul.signature-desktop{
  margin: 0 100px;
}
}

@media(max-width:1024px){
  .signature  ul.signature-desktop li:nth-child(-n+2){
  display: none;
}

  .signature ul.signature-mobile li{
    height: 350px;
    margin-bottom: 20px;
  }
  


}

@media(max-width:1024px){
  .signature  ul.signature-desktop li:nth-child(-n+2){
  display: none;
}
}

@media(max-width:765px){
  .signature  ul.signature-desktop{
    display: none;
  }

  .signature {
  height: 1700px;
  margin-bottom: 180px;
  background: none;
}

.signature ul.signature-mobile{
  display: block;
}

}


/*signature-mobile*/

.signature ul.signature-mobile li{
  margin-bottom: 180px;
  position: relative;
}

.signature ul.signature-mobile li:last-child{
  margin-bottom: 0;
}


.signature ul.signature-mobile li > div{
  width: 223px;
  margin: 0 auto;
}

.signature ul.signature-mobile li > div img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.signature ul.signature-mobile li > p{
  font-size: 18px;
}

.signature ul.signature-mobile li::before{
  content: "";
  display: block;
  width: 374px;
  height: 374px;
  background-color: #FEE880;
  border-radius: 50%;
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}

/*event*/

.event {
  padding-top: 50px;
  text-align: center;
  margin-bottom: 268px;
  position: relative;
  overflow: hidden;
}


.event > ul > li{
  width: 831px;
  height: 367px;
  border-radius: 54.65px;
  margin: 0 auto 66px auto;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.event > ul > li:nth-child(1){
  background:  linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
  url(../img/event/event_01.png) no-repeat center / cover;
}

.event > ul > li:nth-child(2){
  background:  linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
  url(../img/event/event_02.png) no-repeat center / cover;
}

.event > ul > li:nth-child(3){
  background:  linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
  url(../img/event/event_03.png) no-repeat center / cover;
}

.event .event-txt{
  width: 50%;
  background-color: #fff;
  height: 367px;
  padding: 80px 0 0 58px;
  text-align: left;
  position: absolute;
  top: 0;
  left: -110%;
  transition: left 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.event .event-txt h2{
  font-size: 22px;
  line-height: 34px;
  color: #E868A3;
  font-family: 'Paperlogy-5Medium';
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}

.event .event-txt .event-detail{
  font-size: 15px;
  line-height: 25px;
}

.event .event-txt ul{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-right: 58px;
}

.event .event-txt ul li:nth-child(1){
  color: #b5b5b5;
  font-size: 12.63px;
}

.event .event-txt ul li:nth-child(2) a:hover img {
  transform: translateX(15px);
  transition: transform 0.3s ease;
}

.event .event-txt ul li:nth-child(2) img{
  width: 100%;
}

.event .event-bg-ry{
  opacity: 0.44;
  position: absolute;
  top: 197px;
  right: -140px;
  width: 440px;
  z-index: -10;
}

.event .event-bg-ry img{
  width: 100%;
}

.event .event-bg-rp{
  opacity: 0.24;
  position: absolute;
  top: 682px;
  right: 190px;
  width: 162px;
  z-index: -10;
}

.event .event-bg-rp img{
  width: 100%;
}

.event .event-bg-lp{
  opacity: 0.24;
  position: absolute;
  bottom:355px;
  left: 55px;
  width: 313px;
  z-index: -10;
}

.event .event-bg-lp img{
  width: 100%;
}

.event .event-bg-ly{
  opacity: 0.44;
  position: absolute;
  bottom: 40px;
  left: 400px;
  width: 194px;
  z-index: -10;
}

.event .event-bg-ly img{
  width: 100%;
}

@media(max-width:1024px){
  .event-bg-ry,.event-bg-rp,.event-bg-lp,.event-bg-ly{
    display: none;
  }

  .event .event-txt{
  left: 0;
}


}

@media(max-width:800px){
  .event-bg-ry,.event-bg-rp,.event-bg-lp,.event-bg-ly{
    display: none;
  }

  .event > ul > li{
  width: 665px;
  height: 300px;
  border-radius: 53.74px;
  margin: 0 auto 58px auto;
}

  .event .event-txt{
    height: 300px;
    padding: 65px 0 0 50px;
  }

  .event .event-txt h2{
    font-size: 17.7px;
    line-height: 27px;
    margin-bottom: 15px;
  }

  .event .event-txt .event-detail{
    font-size: 12.2px;
    line-height: 19px;
  }

  .event .event-txt ul li:nth-child(1){
  font-size: 10px;
}
}

/*instargran*/
.instargram {
  text-align: center;
  margin-bottom: 268px;
}

.instargram .instar-swiper > ul > li{
  border: 1.75px solid var(--main-brown);
  padding: 22px 17px;
  height: 514px;
  cursor: pointer;
}

.instargram .instar-swiper > ul > li .instar-img{
  width: 100%;
  height: 300px;
  position: relative;
}

.instargram .instar-swiper > ul > li .instar-img:hover a::before{
  opacity: 1;
}

.instargram .instar-swiper > ul > li .instar-img:hover a::after{
  opacity: 1;
}

.instargram .instar-swiper > ul > li .instar-img a::before {
  content: "";
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  backdrop-filter: blur(3px); 
  -webkit-backdrop-filter: blur(3px); 
  z-index: 1;
  opacity: 0;
  transition: all 0.5s;
}

.instargram .instar-swiper > ul > li .instar-img a::after{
  content: "";
  display: block;
  background: url(../img/instar-color-icon.png) no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s;
}

.instargram .instar-swiper ul > li .instar-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instargram .instar-swiper ul > li .instar-icon{
  display: flex;
  gap: 10px;
  justify-content: left;
  margin-top: 10px;
}

.instargram .instar-swiper ul > li .instar-icon > li:nth-child(1){
  width: 24px;
  margin-top: 1px;
}

.instargram .instar-swiper ul > li .instar-icon > li:nth-child(2){
  width: 22px;
}

.instargram .instar-swiper ul > li .instar-icon > li:nth-child(3){
  width: 22px;
  margin-top: 1px;
}

.instargram .instar-swiper ul > li .instar-icon > li img{
  width: 100%;
}

.instargram .instar-swiper ul > li .instar-txt{
  text-align: left;
  margin-top: 18px;
}

@media(max-width:765px){
  .instargram .instar-swiper > ul > li{
  height: 480px;
}

.instargram .instar-swiper > ul > li .instar-img{
  width: 100%;
  height: 260px;
}

.instargram .instar-swiper ul > li .instar-txt{
  font-size: 14px;
}
}

