<script>
  document.addEventListener('DOMContentLoaded', function() {
		
    // Identify Buttons
    const mainButton = document.querySelector('.scheme-switch-alpha__button--main');
    const altButton = document.querySelector('.scheme-switch-alpha__button--alt');
    
    // Set Focus on Click With Slight Delay
    altButton.addEventListener('click', function() {
      setTimeout(function() {
        mainButton.focus();
      }, 1);
    });
    mainButton.addEventListener('click', function() {
      setTimeout(function() {
        altButton.focus();
      }, 1);
    });
  });
</script>
시작하기Log in
<script>
  document.addEventListener('DOMContentLoaded', function() {
		
    // Identify Buttons
    const mainButton = document.querySelector('.scheme-switch-alpha__button--main');
    const altButton = document.querySelector('.scheme-switch-alpha__button--alt');
    
    // Set Focus on Click With Slight Delay
    altButton.addEventListener('click', function() {
      setTimeout(function() {
        mainButton.focus();
      }, 1);
    });
    mainButton.addEventListener('click', function() {
      setTimeout(function() {
        altButton.focus();
      }, 1);
    });
  });
</script>

연매출 150억, 급성장하는 킨치의 브랜드 일관성 전략 feat.무인양품

브랜드가 시장에서 성공하기 위해서는 단순한 인지도를 넘어 철저한 일관성이 필수적입니다. 이번 웨비나에서는 무인양품이 어떻게 일관된 브랜드 이미지를 유지하며 글로벌 시장에서 성공을 거두었는지, 그리고 한국의 온라인 시장에서 이를 어떻게 응용할 수 있는지에 대해 논의합니다.

특히, 런칭 3년 만에 150억 매출을 목표로 하는 “킨치”의 대표 김정현님을 모시고, 킨치의 급성장 비법을 파헤칩니다. 김정현 대표님은 킨치가 어떻게 효과적인 브랜딩 접근법을 통해 팬들과 소통하고 있는지, 그리고 무인양품의 브랜드 전략을 어떻게 해석하고 한국 시장에 맞게 적용하고 있는지에 대해 토크 형식으로 논의할 예정입니다. 또한, 킨치의 향후 성장 계획과 브랜드 비전을 공유하며, 브랜드 일관성을 어떻게 유지할지에 대한 이야기도 나눌 예정입니다.

🔍 웨비나에서 다룰 주요 내용:

• 무인양품 사례 분석: 글로벌 시장에서 일관된 브랜드 이미지 유지의 성공 요인

• 킨치의 비밀: 매출 성장 비법, 브랜딩 접근법, 팬들과의 소통법, 향후 성장 계획

• 킨치의 브랜딩에 대한 질의 응답: 한국 시장에서의 브랜딩 전략

🎉 특별 혜택:

  • 참여자 중 추첨을 통해 당신의 브랜드를 무료로 진단하고, 맞춤형 전략을 제안해드립니다.

🗓️ 웨비나 일정:

• 일시: 2024년 9월 3일(화) 오후 2시 – 3시

• 참가 방법: 신청서 작성 후 웨비나 한 시간 전에 링크를 보내드립니다.

지금 신청하고, 무인양품과 킨치의 성공 비밀을 내 브랜드에 적용하세요!

<style>
  /* -- The root styles must go in the element of the structure with the name "Post content". --*/ 
  
.single-post-2__content{
  /* -- Heading styles -- */
  h2, h3, h4, h5, h6{
  	font-weight: 700;
    color: var(--neutral);
    margin-bottom: var(--space-s);
  }
  
  h2{
  	font-size: var(--text-xl);
  }
  
  h3{
  	font-size: var(--text-l);
  }
  
  h4, h5, h6{
  	font-size: var(--text-m);
  }
  
  /* -- Content paragraphs styles -- */
  p {
  
    /* - Bold text styles - */
    strong{
      color: var(--neutral);
    }
    
    /* - Anchor text styles - */
    a{
     	color: var(--neutral);
      text-decoration: underline;
      font-weight: 500;
      transition: color .2s ease;
      
      &:hover, &:focus{
      	color: var(--primary);
      }
    }
  
  }
  
  /* -- List styles -- */
  ul, ol{
    margin:var(--space-m) 0;
    
    li:not(:last-child){
    	margin-bottom: 8px;
    }
  }
  
  /* -- Image styles -- */
  figure{
    margin-bottom: var(--space-l);
    
  
  	&:has(figcaption) {
    
  
      figcaption{
        margin-top: var(--space-xs);
        color: var(--neutral);
      }
    }
  }
  
  /* -- Blockquote styles -- */
  blockquote.wp-block-quote{
    font-family:inherit;
    text-align:center;
    font-weight: 600;
    color: var(--white);
    border:none;
    background-color:var(--neutral);
    padding:var(--section-space-m) var(--space-xxl);
    margin-bottom: var(--space-l);
    
    @media (max-width: 767px) {
    	 padding: var(--section-space-m) var(--space-l);
    }
    
    cite{
      margin:0;
      font-size: var(--text-l);
      color: var(--neutral);
      opacity: 1;
      text-align:center;
      text-transform: inherit;
    }
  }
}
</style>