main {
  background: url(../img/section02_bg.png);
  }


/*빙그레맛*/

  main #taste {
    
  }
  main #taste .inner {
    padding: 20px;
  }

  main #taste .inner h2.h2 {
    margin-bottom: 50px;
    
  }
  #taste .inner ul.list{
   display:flex;
   width:90%;
   justify-content:space-between;
   gap:10px;
   text-align:center;
   flex-wrap:wrap;
   row-gap:40px;
   
  }

  #taste .inner ul.list li {
    width: calc((100% / 6) - (50px / 6));  
    box-sizing: border-box;
    transform: translateY(15px);
    opacity: 0.3;
    transition: all 0.5s ease-out;
  }

.tasteliup{
  transform: translateY(0px) !important;
  opacity: 1 !important;
}


  #taste .inner ul.list li.delay:nth-child(1){
    transition-delay: 0.2s;
  }
  #taste .inner ul.list li.delay:nth-child(2){
    transition-delay: 0.4s;
  }
  #taste .inner ul.list li.delay:nth-child(3){
    transition-delay: 0.6s;
  }
  #taste .inner ul.list li.delay:nth-child(4){
    transition-delay: 0.8s;
  }
  #taste .inner ul.list li.delay:nth-child(5){
    transition-delay: 1.2s;
  }
  #taste .inner ul.list li.delay:nth-child(6){
    transition-delay: 1.4s;
  }

  #taste .inner ul.list li:hover{
    transform: translateY(-15px) !important;  
  }

  main #taste .inner ul.list li::before{
    content: "";
    display: block; 
    width: 100%;
    background-color: yellow;
    border-radius: 20px;
    height: 242px;   
    margin-bottom: 11px;
    background-repeat: no-repeat;
    background-position: center;
  }

  #taste .inner ul.list li:nth-child(1)::before {
    background-image: url(../img/1.png);
    background-color: #efe4db;
  }
  #taste .inner ul.list li:nth-child(2)::before {
    background-image: url(../img/2.png);
    background-color: #f6efe0;
  }
  #taste .inner ul.list li:nth-child(3)::before {
    background-image: url(../img/3.png);
    background-color: #f9e5e5;
  }
  #taste .inner ul.list li:nth-child(4)::before {
    background-image: url(../img/4.png);
    background-color: #ededed;
  }
  #taste .inner ul.list li:nth-child(5)::before {
    background-image: url(../img/5.png);
    background-color: #e4f3f9;
  }
  #taste .inner ul.list li:nth-child(6)::before {
    background-image: url(../img/6.png);
    background-color: #fcf4e5;
  }

  main #taste .inner ul.list li a {
    width: 100%;
    display: block;
    border-radius: 25px;
    line-height: 3;
    font-size: 18px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
  }

  main #taste .inner ul.list li a::before{
    content: "VIEW MORE"; 
    display: block;
    background-color: #e62f28;
    color: white;
    position: absolute;
    width: 100%;
    display: none;
    
    
  }

  main #taste .inner ul.list li:hover a::before{
    display: block;
  }
  

/*브랜드샵*/

#shop { 
  position: relative;
}

#shop::before{
  content: "BRAND";
  position:absolute;
  transform: rotate(90deg) translateX(-69px);
  transform-origin: 0 85%;
  font-size: 100px;
  opacity: 0.3;
  /*! transform: translateX(69px) rotate(90deg); */
}

#shop .inner { 
 
}


#shop .inner h2 {
  padding-bottom: 50px;
}


#shop .inner ul.list {
  width: 90%;
  gap: 20px;
}

  
#shop .inner ul.list li {
 border-radius:40px;
 border:1px solid #e1dbdb;
 width:calc(100% / 6);
 height:261px;
 box-sizing:border-box;
 display:flex;
 justify-content:space-around;
 align-items:center;
 flex-direction:column;
 transform: translateY(15px);
 opacity: 0.3;
 transition: all 1s ease-out;  
}
#shop .inner ul.list li.delay:nth-child(1){
 transition-delay: 0.2s; 
}
#shop .inner ul.list li.delay:nth-child(2){
 transition-delay: 0.4s; 
}
#shop .inner ul.list li.delay:nth-child(3){
 transition-delay: 0.6s; 
}
#shop .inner ul.list li.delay:nth-child(4){
 transition-delay: 0.8s; 
}
#shop .inner ul.list li.delay:nth-child(5){
 transition-delay: 1.2s; 
}
#shop .inner ul.list li.delay:nth-child(6){
 transition-delay: 1.4s; 
}
#shop .inner ul.list li:hover {
  box-shadow: 2px 2px 15px #ccc;
 transform: translateY(-15px) !important;
}


#shop .inner ul.list li:nth-child(1)::before {
    background-image: url(../img/1.png);
    background-color: #efe4db;
  }
#shop .inner ul.list li:nth-child(2)::before {
    background-image: url(../img/2.png);
    background-color: #f6efe0;
  }
#shop .inner ul.list li:nth-child(3)::before {
    background-image: url(../img/3.png);
    background-color: #f9e5e5;
  }
#shop .inner ul.list li:nth-child(4)::before {
    background-image: url(../img/4.png);
    background-color: #ededed;
  }
#shop .inner ul.list li:nth-child(5)::before {
    background-image: url(../img/5.png);
    background-color: #e4f3f9;
  }
#shop .inner ul.list li:nth-child(6)::before {
    background-image: url(../img/6.png);
    background-color: #fcf4e5;
  }

#shop .inner ul.list li:hover>* {
  display: block;
}

#shop .inner ul.list li>*:not(h3) {
  display: none;
}

#shop .inner ul.list li h3 {
  font-size: 0;
}


#shop .inner ul.list li h3 img {
  
  transition: all 0.5s;
}
#shop .inner ul.list li br {
  
}
#shop .inner ul.list li p {
  text-align: center;
  line-height: 1.5;
}

#shop .inner ul.list li p:before{
  content: "";
  width: 30px;
  display: block;
  border-top: 2px solid #ccc;
  margin: 0px auto;
  margin-bottom: 16px;
  
}

#shop .inner ul.list li a {
  background-color: #e62f28;
  color: white;
  width: 90%;
  line-height: 3;
  border-radius: 30px;
  text-align: center;
  
}

#shop .inner ul.list li:hover>*:not(a){
  animation-name: fadeUp;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
  
}

@keyframes fadeUp{
  from{
    transform: translateY(40px);
    opacity: 0;
  }
  to{
    transform: translateY(0px);
    opacity: 1;
  }
}


#shop .inner ul.list li:hover img{
  transform: scale(0.7);
}

#shop .inner ul.list li:hover a{
  animation-name: shopFadeIn;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
  
}

@keyframes shopFadeIn{
  from{
    opacity: 0;
    transform: translateY(-10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

#community {
  
}
#community .inner {
  gap: 50px;
}
#community .inner h2 {

}

#community .inner >*{
  border-radius: 30px;
  box-sizing: border-box;
}

#community .inner > article {
  width: 40%;
  height: 280px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-origin: content-box;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}

#community .inner > article.cyber {
  background-color: #fcf5e5;
  background-image: url(../img/commu2.png);
}
#community .inner > article.sinmungo {
  background-color: #f9f9f9;
  background-image: url(../img/commu1.png);
}
#community .inner > article h3 {
  
}
#community .inner > article p {
  
}
#community .inner > article a {

}


#community .inner div{
  width: calc(80% + 50px);
  border: 1px solid #fff;
  padding: 70px 70px;
  box-shadow: 0px 5px 24px 2.7px #ccc;
}

#community .inner div article {
 border-radius: 30px;
}

#community .inner div article:not(.faq){
  width: calc((100% / 2) - (50px / 2));
  box-sizing: border-box;
  height: 280px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-origin: content-box;
}

#community .inner div article.faq {
  
  width: 100%;
  padding-bottom: 30px;
  position: relative;
}

#community .inner div article.email {
  background-color: #eef8fb;
  background-image: url(../img/commu3.png);

}


#community .inner div article.telephone {
  background-color: #fdf3f2;
  background-image: url(../img/commu4.png);

}

#community .inner div article.email, .telephone{

}


#community .inner div article h3 {
  
  
}

#community .inner div article:nth-child(1) h3{
  margin-bottom: 30px;
}

#community .inner div article ul {
  
  gap: 50px;
  row-gap: 10px;
  
}
#community .inner div article ul li {
  width: calc(100% / 2 - 50px / 2);
  background-color: #f9f9f9;
  line-height: 4;
  border-radius: 30px;
  font-size: 18px;
  box-sizing: border-box;
  box-shadow: -2px 3px 15px #e6e1e1 inset;
}

#community .inner div article ul li:nth-chil(even){
  margin-left: 50px
}

#community .inner div article ul li a {
  padding-left: 20px;
  
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#community .inner div article ul li a::after{
  content: "↗";
  width: 40px;
  height: 40px;
  background-color: #e0462e;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 2;
  color: white;
  transform: scale(0);
  transition: all 0.7s;
  
 
}
#community .inner div article ul li:hover a::after{
  transform: scale(1);
}

#community .inner div article ul li a:hover{
  font-weight: 600;
}

#community .inner div article p {
 padding-bottom: 20px;
}

#community .inner div article p .time{
  color: #e62f28;
  font-weight: 700;
}

#community .inner div article > a {

}


#community .inner div article > a.tel{
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}

#community .inner div article > a.viewMore{
  position: absolute;
  right: 0px;
  top: 0px;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center; 
  font-weight: 500;
}

#community .inner div article > a.viewMore:hover{
  background-color: #e62f28;
  color: white;
}

.dropshadow{
  box-shadow: 2px 2px 8px #ccc inset;
}

aside#quick{
  position: fixed;
  right: 20px;
  bottom: 60px;
}

aside#quick span{

}

aside#quick a.shop{
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  font-size: 12px;
  text-align: center;
  line-height: 50px;
  display: block;
  box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.06), inset 0px 5px 10px 0 rgba(255, 255, 255, 0.14);
}

aside#quick a.top{
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 50%;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 5px;
  
}

aside#quick a.top::before{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  display: block;
  border-left: transparent;
  border-bottom: transparent;
  transform: translateY(50%) rotate(-45deg);
  transition: all 0.5s;
}

aside#quick a.top:hover::before{
  margin-top: -5px;
}

aside#quick a.top::after{
  content:"";
  width: 2px;
  height: 15px;
  display: block;
  background-color: #ffff;
  transform: translateY(-40%);
}

aside#quick a.top:hover ::after{
 
}



