@charset "utf-8";
/* 초기화 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
}
a {    
    text-decoration: none;
}
/* 공통 클래스 */
.container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

#wrap{
    width: 100%;
    height: 100%;
}
.section {
    display: flex;
    align-items: center;     /* 세로 중앙 정렬 */
    min-height: 100vh;       /* 화면 높이에 맞게 가운데 배치 */
}

/* ====== mobile-menu영역 ====== */
.mb-menu{
    width: 100%;
    height: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    background-color: #fff;
    padding: 25px 3%;
    transition: all .3s ease-in;
}
.mb-menu.active{
    right: 0;
}
.mb-menu .mb-menu-title{
    display: flex;
    justify-content: space-between;
    padding: 0 0 25px;
}
.mb-menu .mb-menu-title .mb-logo{
    width: 180px;
    align-self: center;
}
.mb-menu .mb-menu-title .mb-logo a{
    display: block;
    width: 100%;
}
.mb-menu .mb-menu-title .mb-logo a img{
    width: 100%;
}
.mb-menu .mb-menu-title .mb-btn-close{
    display: block;
    width: 30px;
    height: 30px;
}
.mb-menu .mb-menu-title .mb-btn-close span{
    color: #222;
    font-size: 30px;
}
/* 모바일 메뉴 */
.mb-menu .mb-main-menu{}
.mb-menu .mb-main-menu > li{
}
.mb-menu .mb-main-menu > li .mb-menu-list{
    display: block;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.4px;
    width: 100%;
    position: relative;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active{
}
.mb-menu .mb-main-menu > li .mb-menu-list span{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    opacity: 0.7;
    transition: all .3s linear;
    font-size: 30px;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active span{
    transform: translateY(-50%) rotate(180deg);
}

.mb-menu .mb-main-menu > li .mb-submenu{
    padding-bottom: 20px;
    display: none;
}
.mb-menu .mb-main-menu > li .mb-submenu li{
    padding: 8px 0;
    line-height: 1.2;
}
.mb-menu .mb-main-menu > li .mb-submenu li a{
    font-size: 16px;
    letter-spacing: -0.466667px;
    line-height: 1.2;
}
/* 헤더영역 */
.header{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    align-items: center;
    overflow:hidden;
    z-index: 999;
    transition: all .4s;
    background: rgba(243, 241, 242, 0.4);
}
.header.fixed{
    box-shadow:0 0 20px rgba(0,0,0,.1);
}
.header.nofixed{
    top: -200px;
}
.header.down {
    height: 340px;  
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background-color: #2c2a29;
}
.header::before {
    content:'';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2c2a29;
    position: absolute;
    top: 112px;
    opacity: 0;
    transition: all .4s;
    color: #fff;
}
.header.down::before {
    opacity: 1;
    height: 200px;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container .logo{}
.header .container .logo a img{}

nav{}
nav .mainMenu{
}
nav .mainMenu > li{
    display:inline-block;
    padding: 0 22px;
    vertical-align: top;
    position: relative;
}
nav .mainMenu > li{
    display:inline-block;
    padding: 0 22px;
    vertical-align: top;
    position: relative;
}
nav .mainMenu > li > a{
    display: block;
    font-size: 20px;
    color: #111;
    letter-spacing: -0.466667px;
    padding: 44px 16px;
    transition: all .3s linear;
    position: relative;
    line-height: 1.2;
}
nav .mainMenu:hover > li > a{
    color: #acacac;
}
nav .mainMenu > li > a::before {
    content:'';
    display: block;
    color: #fff;
    width: 0;
    height: 3px;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: all .4s linear;
}
nav .mainMenu > li:hover > a{
    color: #fff;
}
nav .mainMenu > li:hover > a::before {
    width: 100%;
}
nav .mainMenu > li .submenu {
    position: absolute;
    font-family: "Pretendard";
    left: 0;
    top: 100%;
    width: 100%;
    padding: 22px 0;
    text-align: center;
    z-index: 10;

}
nav .mainMenu > li .submenu li{
    padding: 0 0 12px;
}
nav .mainMenu > li .submenu li a{
    display: block;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.466667px;
    line-height: 1.5;
    word-break: keep-all;
    transition: all .4s linear;
}
.header .menuBtn {
    position: relative;
    width: 22px;
    height: 22px;
    display: none;
}

.header .menuBtn span {
    width: 100%;
    height: 2px;
    background-color: #222;
    display: block;
    position: absolute;
    left: 0;
}
.header .menuBtn span:nth-child(1) {
    top: 2px;
}
.header .menuBtn span:nth-child(2) {
    top: 11px;
}
.header .menuBtn span:nth-child(3) {
    top: 20px;
}
/* 메인영역 */
.title-Swiper{
    width: 100%;
    height: 100vh;
    position: relative;
}

.title-Swiper .swiper-wrapper {
}
.title-Swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-Swiper .swiper-slide .swiper-pc{
    width: 100%;
    height: 100vh;
}
.title-Swiper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.title-Swiper .swiper-slide .swiper-mb{
    display: none;
    width: 100%;
    height: 100vh;
}
.title-Swiper .swiper-control {
    position: absolute;
    bottom: 20px;           /* 슬라이드 하단에서 떨어진 거리 */
    left: 50%;
    transform: translateX(-50%);
    display: flex;          /* 가로 정렬 */
    gap: 10px;              /* 요소 간 간격 */
    background: #333333;       /* 배경 회색 */
    padding: 10px 20px;
    border-radius: 30px;
    align-items: center;
    z-index: 10;
}
.title-Swiper .swiper-control .swiper-next{
    width: auto;
    min-width: 30px;
    text-align: center;
    font-size: 14px;
}
.title-Swiper .swiper-control .swiper-next img{
}
.title-Swiper .swiper-control .swiper-pg{
    color: #fff;
}
.title-Swiper .swiper-control .swiper-prev{
    width: auto;
    min-width: 30px;
    text-align: center;
    font-size: 14px;
}

.title-Swiper .swiper-control .swiper-next img,
.title-Swiper .swiper-control .swiper-prev img{
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* 메뉴 영역 */
.menu {
    overflow:hidden;
    height: 800px;
    width: 100%;
    display: flex;
    position: relative;
    background-image: url(../img/pyeongpyeonghan-keobgwa-keopi-kong.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    align-items: center;
    padding: 100px 0;
}
.menu .container {
    position: relative;
}
.menu .section-title {
    position: relative;
    margin-top: 28px;
    margin-bottom: 32px;
    z-index:1;
    font-size: 96px;
    font-weight: 800;
}
.menu .section-title::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 16px;
    background-color: #d50037;
}
.menu .tabs {
    display: flex;
    flex-direction: column;
    overflow:hidden;
    align-items: stretch;
    font-size: 14px;
    white-space:nowrap;
    width: 320px;
} 
.menu .tabs .tab-list {
    flex-grow:1;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.menu .tabs .tab-list li {
    margin: 15px 0 ;
}
.menu .tabs .tab-list li a {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 32px;
}   
.menu .tabs .tab-list li a.focus {
    font-weight: 900;
    color: #000;
    text-decoration: underline;
}
.menu .tabs .more-btn {
    display: inline;
    width: 140px;
    height: 100%;
    color: black;
    padding: 10px 20px;
    margin-top: 30px;
    border: 1px solid white;
    border-radius: 30px;
}
.menu .tabs .more-btn a {
    color: black;
    font-size: 20px;
    font-weight: 400;
}

.menu .tabpanel {
    position: absolute;
    overflow: hidden;
    width: 100%;
    min-width: 1320px;
    height: 516px;
    top: 50%;
    left: 45%;
    z-index: 0;
    margin: -200px 0 0 -90px;
}
.menu .tabpanel .tabpanel-body {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -432px;
    transform: translate(-50%, 0);
    width: 163%;
    /* width: 100%; */
}
.menu .tabpanel .tabpanel-body .sw-menu {
    overflow: visible;
    height: 516px;
}
.menu .tabpanel .tabpanel-body .sw-menu .swiper-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 488px;
}
.menu .tabpanel .tabpanel-body .sw-menu .swiper-slide {
    width: 208px;
    height: 176px;
    padding: 0 16px;
    transition: 0.5s;
}
/* active 바로 다음, 그 다음… 4번째를 선택 */
.swiper-slide-active
  + .swiper-slide
  + .swiper-slide
  + .swiper-slide
  + .swiper-slide {
  /* 원하는 “큰” 스타일 */
  width: 520px;      /* 예: 큰 카드 너비 */
  height: 488px;     /* 필요 시 */
  opacity: 1;
  /* transform: scale(1.05); 등 효과도 가능 */
}
/* .menu .tabpanel .tabpanel-body .sw-menu .swiper-slide-active {
    width: 520px;
    height: 488px;   
} */
.menu .tabpanel .tabpanel-body .sw-menu .swiper-slide a {}
.menu .tabpanel .tabpanel-body .sw-menu .swiper-slide a img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.menu .tabpanel .swiper-pagination-wrap {
    position: absolute;
    z-index: 1;
    display: block;
    width: 424px;
    height: 56px;
    overflow: hidden;
    bottom: 14px;
    left: 21px;
    bottom: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
}
.menu .tabpanel .swiper-pagination-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    left: 10px;
    right: auto;
    margin-top: -17px;
    font-size: 0;
    z-index: 11;
    cursor: pointer;
    display: flex;;
    align-items: center;
    justify-content: center;
}
.menu .tabpanel .swiper-pagination-wrap .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}
.menu .tabpanel .swiper-pagination-wrap .swiper-button-next {
    top: 50%;
    margin-top: -17px;
    font-size: 0;
    z-index: 11;
    width: 34px;
    height: 34px;
    right: 10px;
    left: auto;
    position: absolute;
    cursor: pointer;
    display: flex;;
    align-items: center;
    justify-content: center;
}

.menu .tabpanel .swiper-pagination-wrap .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}
.menu .tabpanel .swiper-pagination-wrap .swiper-pagination {
    margin-bottom: 10px;
}
.menu .mb-swiper{
    display: none;
}
.tabpanel-mb{
    width: 100%;
}
.sw-menu-mb{
    height: 60vh;
}

.menu .mb-swiper .swiper-slide{
    height: 100%;
}
.menu .mb-swiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu .mb-swiper .swiper-slide .menu-slide-desc{
    position: absolute;
    text-align: center;
    margin: 0 auto;
    background: gray;
    width: 100%;
    height: 30px;
    bottom: 0;
}
.menu .mb-swiper .swiper-slide .menu-slide-desc h5{
    color: white;
}
.goods{
    display: flex;
    align-items: center;
    height: 700px;
    width: 100%;
    margin: 0 auto;
    background-color: #F9F5EB;
    background-image: url('../img/store_exp_img03.png'), url('../img/store_exp_img03.png');
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 343px 142px, 343px 142px; /* 각 이미지 사이즈 지정 */
}
.goods .container{
    /* flex-direction: column; */
    display: flex;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}
.goods .container .goods-img{
    width: 280px;
    height: 377px;
}
.goods .container .goods-img img{
    width: 100%;
    object-fit: cover;
}

.goods .container .goods-title{
    width: 50vh;
}
.goods .container .goods-title img{
    width: 100%;
    object-fit: cover;
}

.story {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/inst.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    height: 580px;
    width: 100%;
    text-align: center;
}

.story .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.story .container .text-story{
}
.story .container .text-story p{
    color: #fffffb;
    font-weight: bold;
    font-size: 20px;
}
.story .container .text-eg-story{}
.story .container .text-eg-story p{
    color: #eb6849;
}
.story .container .text-btn a{
}

.story .container .story-btn {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.story .container .story-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 60px;
    border: 2px solid #fffffb;
    border-radius: 30px;
    font-weight: bold;
    color: #fffffb;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.story .container .story-btn a:hover{
    color: #eb6849;
    border: 2px solid #eb6849;
}
.story .container .story-btn i{
     margin-left: 8px;
}

.brand{
    width: 100%;
    margin: 0 auto;
    background: #F9F5EB;
}
.brand .container{
    max-width: 1400px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand .container .top-box{
    width: 60%;
    justify-content: center;

}
.brand .event{
    float: left;
    width: 45.96%;
    height: 330px;
    margin-right: 0.84%;
    padding: 15px 28px 0 28px;
    background-color: #EA6648;
    border: 1px solid black;
}
.brand .event > h5{
    text-align: center;
    color: #fff;
    font-size: 30px;
}
.brand .event .event-swiper{
}
.brand .event .swiper-slide{}
.brand .event .swiper-slide .event-img{}
.brand .event .swiper-slide .event-img img{
    width: 320px;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
}
.brand .event .swiper-slide .event-slide-desc{
    padding: 7px;
    background-color: #fff;
    padding-left: 15px;
    /* vertical-align: top; */
}
.brand .find-store{
    float: left;
    width: 45.96%;
    height: 330px;
    margin-right: 0.84%;
    padding: 20px 28px 0 28px;
    background: url(../img/NaverBlog_20170215_180810_01.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    border: 1px solid black;
}
.brand .find-store h2{
    font-size: 20px;
}
.brand .find-store h2::after{
    display: block;
    content: "";
    margin-top: 20px;
    margin-bottom: 15px;
    width: 42px;
    height: 1px;
    background: black;
}
.brand .find-store p{
    font-size: 20px;
    padding-bottom: 100px;
}
.brand .find-store .store_search{
    display: flex;
    border: 5px solid black;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    max-width: 250px;
    width: 100%;
}
.brand .find-store .store_search h3{
    font-size: 22px;
    display: inline;
}
.brand .find-store .store_search i{
    font-size: 22px;
}

.brand .bottom-box{
    float: left;
    width: 42.37%;
    height: 329px;
}
.brand .bottom-box .news{
    width: 90%;
    margin: 8px 0 3% 4%;
    height: 52%;
}
.brand .bottom-box .news h2{
    font-size: 25px;
}
.brand .bottom-box .news .baraboda-new{
    margin-top: 10px;
}
.brand .bottom-box .app{
    display: flex;
    width: 90%;
    padding: 7px;
    padding-left: 15px;
    z-index: 10;
    height: 40%;
    margin: 8px 0 3% 4%;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}
.brand .bottom-box .app p{
    font-size: 28px;
    width: 100%;
}
.brand .bottom-box .app i{
        font-size: 23px;
}
footer {
    background-color: #f15a4b;
    color: white;
    padding: 40px 20px 20px;
    font-size: 14px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-logo {
    flex: 1;
  }

  .footer-logo img {
    width: 140px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    margin-top: 8px;
  }
  .footer-contact p{
    display: flex;
    margin-bottom: 6px;
  }
  .footer-contact i{
    display: block;
    margin: 4px 5px 0 0;  
    color: white;
    text-decoration: none;
  }

  .footer-section h4 {
    margin-bottom: 12px;
    font-weight: bold;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 6px;
  }

  .footer-sns a {
    color: white;
    margin-right: 10px;
    font-size: 20px;
  }

  .footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
  }