@charset "utf-8";

/* common */
.main h3 {
    font-family: '62570',sans-serif;
    font-size:42px;
    font-weight: 400;
    line-height: 1.2;
}
.main .more_btn {
    display: flex;
    align-items: center;
    position:relative;
    height:60px;
    padding:0 40px;
}
.main .more_btn:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:60px;
    height:60px;
    border-radius:30px;
    background-color:#d51a1a;
    transition:.4s;
}
.main .more_btn:hover:before {
    width:100%;
}
.main .more_btn .txt {
    position:relative;
    font-size:18px;
    color:#eeeeee;
    z-index:10;
}
.main .more_btn .ico {
    position:relative;
    margin-top: -7px;
    margin-left: 20px;
    z-index:10;
}
.main .ttl_box .hidden_wrap {
    overflow: hidden;
}
.main .ttl_box .hidden_wrap h3,
.main .ttl_box .hidden_wrap p {
    transform: translateY(100%);
    transition: .5s ease-in-out;
}
.main .ttl_box .hidden_wrap p {
    transition-delay: .4s;
}
.main .ttl_box.action .hidden_wrap h3,
.main .ttl_box.action .hidden_wrap p {
    transform: translateY(0);
}

/* visual */
.visual {
    position:relative;
    height:100vh;
}
.visual .visual_tab {
    position:absolute;
    top:160px;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    text-align: center;
    z-index:10;
}
.visual .visual_tab button {
    width:180px;
    height:60px;
    font-family: '62570', sans-serif;
    font-size:18px;
    color:#999999;
    border:1px solid #dddddd;
    border-radius:30px;
    transition: .5s;
}
.visual .visual_tab button:hover,
.visual .visual_tab button.active {
    color:#fff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.visual .visual_tab button + button {
    margin-left: 10px;
}
.visual .visual_cont {
    height:100%;
}
.visual .cont_wrap {
    display: none;
    height:100%;
    box-sizing:border-box;
}
.visual .cont_wrap.active {
    display: block;
}
.visual .cont_best {
    background:url('../img/main/visual_bg01.jpg') no-repeat center / cover;
}
.visual .cont_best .inner {
    padding-top: 280px;
}
.visual .cont_best .ttl_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position:relative;
    z-index: 10;
}
.visual .cont_best h2 {
    font-family: '62570', sans-serif;
    font-size:42px;
    font-weight: 400;
    color:#eeeeee;
    text-align: center;
}
.visual .cont_best h2 em {
    font-family: inherit;
    color:#d51a1a;
}
.visual .cont_best .more_btn {
    padding:0 40px;
    margin:25px 0 30px;
}
.visual .cont_best .best_pic {
    display: flex;
    align-items: center;
    justify-content: center;
}
.visual .cont_best .best_pic .pic_box {
    position:relative;
    flex:0 0 auto;
}
.visual .cont_best .best_pic .pic01 {
    right:-260px;
}
.visual .cont_best .best_pic .pic03 {
    left:-260px;
}
.visual .cont_best .best_pic .pic02 {
    top:75px;
    z-index: 1;
}
.visual .cont_best .fog_box {
    position:absolute;
}
.visual .cont_best .pic01 .fog01 {
    left:35px;
    bottom:198px;
    animation: slide-in-bottom 3s ease-out .5s infinite both;
}
.visual .cont_best .pic01 .fog02 {
    left:67px;
    bottom:168px;
    animation: slide-in-bottom 4s ease-out 1s infinite both;
}
.visual .cont_best .pic02 .fog01 {
    left:121px;
    bottom:311px;
    animation: slide-in-bottom 4s ease-out infinite both;
}
.visual .cont_best .pic02 .fog02 {
    left:133px;
    bottom:222px;
    animation: slide-in-bottom 6s ease-out infinite both;
}
.visual .cont_best .pic03 .fog01 {
    left:92px;
    bottom:136px;
    animation: slide-in-bottom 3s ease-out .5s infinite both;
}
.visual .cont_best .pic03 .fog02 {
    left:119px;
    bottom:173px;
    animation: slide-in-bottom 4s ease-out 1s infinite both;
}
@keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(70px);
              transform: translateY(70px);
      opacity: 0;
    }
    50% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      opacity: 1;
    }
    80% {
      opacity: 0.5;
    }
    100% {
      opacity:0;
    }
}
.visual .cont_video {
    position:relative;
}
.visual .cont_video .ttl_wrap {
    position:absolute;
    top:270px;
    left:50%; 
    transform: translateX(-50%);
    width:100%;
    text-align: center;
    z-index: 8;
}
.visual .cont_video .ttl_wrap h2 {
    font-size:42px;
    color:#ffffff;
    line-height: 1.61;
    font-weight: 400;
    transform: translateY(40px);
    opacity:0;
    transition: 1s .3s;
}
.visual.action .cont_video .ttl_wrap h2 {
    opacity:1;
    transform: translateY(0);
}
.visual .cont_video .ttl_wrap h2 em {
    color:#d51a1a;
    font-weight: 400;
}
.visual .cont_video .ttl_wrap strong {
    display: block;
    margin-top: 50px;
    font-size:82px;
    color:#ffffff;
    font-weight: 400;
    transform: translateY(40px);
    opacity:0;
    transition: 1s .8s;
}
.visual.action .cont_video .ttl_wrap strong {
    opacity:1;
    transform: translateY(0);
}
.visual .cont_video .video_wrap {
    display: flex;
    position:relative;
    width:100%;
    height:100%;
} 
.visual .cont_video .video_wrap:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.3);
}
.visual .cont_video .video_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:50%;
    height:100%;
}
.visual .cont_video .box_wrap {
    position:relative;
    width:100%;
    height:100%;
}
.visual .cont_video .video_box video {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}
.visual .cont_now {
    position:relative;
    background-color:rgba(0,0,0,.2);
    /* background:url('../img/main/visual_bg02.jpg') no-repeat center / cover; */
}
.visual .cont_now .inner {
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    width:100%;
}
.visual .cont_now .txt_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.visual .cont_now .txt_box h2 {
    display: flex;
    align-items: center;
    font-family: '62570', sans-serif;
    font-size:42px;
    font-weight: 400;
    color:#ffffff;
}
.visual .cont_now .txt_box h2 strong {
    margin:0 6px 0 24px;
}
.visual .cont_now .now_count {
    text-align: center;
}
.visual .cont_now .now_count span {
    display: inline-block;
    margin:30px 0;
    padding:0 20px;
    font-family: '62570', sans-serif;
    font-size:24px;
    color:#ffffff;
    line-height: 50px;
    border-radius:25px;
    background-color:#f0b618;
}
.visual .cont_now .now_count .count_wrap {
    display: flex;
    align-items: flex-end;
    font-family: '62570', sans-serif;
    color:#ffffff;
}
.visual .cont_now .now_count .number {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width:810px;
    margin-right: 10px;
    font-weight: 700;
    font-size:160px;
}
.visual .cont_now .now_count em {
    margin-bottom: 30px;
    font-family: inherit;
    font-size:42px;
}
.visual .cont_now .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.visual .cont_now .video_wrap .video_box {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
}

/* m_special */
.m_special {
    background:#f1f1f1 url('../img/main/special_bg.png') no-repeat right bottom / contain;
}
.m_special .left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width:100%;
    max-width:450px;
    height:100%;
    /* background:url('../img/main/special_left_bg.jpg') no-repeat center / cover; */
}
.m_special .left .txt_box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 260px;
    position:relative;
    height:100%;
    margin-right: 20px;
}
.m_special .left .ttl_box h3 {
    margin-bottom: 30px;
    color:#333333;
    line-height: 1.1;
}
.m_special .left .ttl_box h3 b {
    color:#000;
    font-weight: 400;
}
.m_special .left .ttl_box h3 strong {
    color:#d51a1a;
    font-weight: 400;
}
.m_special .left .ttl_box span {
    font-family: 'MuseumClassic', serif;
    font-weight: 500;
    font-size: 18px;
    color:#555555;
    line-height: 1.77;
}
.m_special .left .special_list {
    margin-top: 80px;
}
.m_special .left .special_list li {
    font-family: 'MuseumClassic', serif;
    font-weight: 500;
    font-size: 18px;
    color:#999999;
}
.m_special .left .special_list li.active {
    color:#fff;
}
.m_special .left .special_list li + li {
    margin-top: 30px;
}
.m_special .left .more_btn {
    margin-top: 80px;
}
.m_special .right {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
    padding-left: 100px;
    box-sizing: border-box;
    /* background:url('../img/main/special_right_bg.jpg') no-repeat center / cover; */
}
.m_special .right .scroll_cont {
    display: flex;
    align-items: center;
    flex-direction: column;
    width:100%; 
    height:100%;
    overflow-y: auto;
}
.m_special .right .item_box {
    width:480px;
    height:600px;
    padding:40px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing:border-box;
}
.m_special .right .item_box + .item_box {
    margin-top: 80px;
}
.m_special .right .item_box:nth-of-type(odd) {
    margin-left: 200px;
}
.m_special .right .item_box p {
    font-family: '62570', sans-serif;
    font-size:24px;
    color:#333;
}
.m_special .right .item_box.item01 {
    margin-top: 180px;
    background-image: url('../img/main/special_item01.jpg');
}
.m_special .right .item_box.item02 {
    background-image: url('../img/main/special_item02.jpg');
}
.m_special .right .item_box.item03 {
    margin-bottom: 50px;
    background-image: url('../img/main/special_item03.jpg');
}
.m_special .right .special_list ul {
    display: flex;
    align-items: flex-start;
}
.m_special .right .special_list li {
    display: flex;
    flex-direction: column;
    width:calc(33.33% - 33.34px);
}
.m_special .right .special_list li + li {
    margin-left: 100px;
}
.m_special .right .special_list .img_box {
    position:relative;
    width:100%;
    border-radius: 50%;
    box-shadow: 4px 7px 17px 0px rgba(0, 0, 0, 0.26);
    background-color:#fff;
    overflow: hidden;
}
.m_special .right .special_list .img_box:before {
    content:'';
    display:block;
    width:100%;
    padding-top: 100%;
}
.m_special .right .special_list .img_box .move_box {
    position:absolute;
    top:70px;
    left:50px;
    width:100%;
    height:100%;
    border-radius: 50%;
    box-shadow: 5px 8px 22px 3px rgba(0, 0, 0, 0.38);
    transition: .6s;
}
.m_special .right .special_list li:hover .img_box .move_box {
    top:0;
    left:0;
}
.m_special .right .special_list .txt_box {
    margin-top: 40px;
}
.m_special .right .special_list .txt_box .name {
    font-size:24px;
    color:#333333;
}
.m_special .right .special_list .txt_box .name strong {
    font-weight: 400;
    color:#d51a1a;
}
.m_special .right .special_list .txt_box .info {
    margin-top: 15px;
    font-size: 18px;
    color:#333333;
    line-height: 1.56;
    word-break: keep-all;
}
.m_special .mCustomScrollBox {
    width:100%;
}
.m_special .mCSB_container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 40px;
}
.m_special .mCSB_scrollTools .mCSB_draggerContainer {
    opacity:0 !important;
}

/* m_feature */
.m_feature {
    position:relative;
    height:100vh;
    overflow:hidden;
}
.m_feature .txt_wrap {
    display: flex;
    position:relative;
    height:100%;
    background-color:rgba(0,0,0,.4);
    z-index:10;
}
.m_feature .txt_wrap .txt_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:33.33%;
    padding:15px;
    box-sizing:border-box;
    text-align: center;
}
.m_feature .txt_wrap .txt_box + .txt_box {
    border-left: 1px solid rgba(221,221,221,.4);
}
.m_feature .txt_box {
    position:relative;
}
.m_feature .txt_box strong,
.m_feature .txt_box p {
    width:100%;
}
.m_feature .txt_box strong {
    display:block;
    top:50%;
    font-size:42px;
    font-weight: 400;
    color:#999;
    line-height: 1.33;
    transition: .5s ease-in-out;
}
.m_feature .txt_box p {
    display:none;
    opacity:0;
    top:52%;
    font-size:18px;
    color:#ffffff;
    line-height: 1.44;
    transition: .5s ease-in-out;
}
.m_feature .txt_box:hover strong {
    top:47%;
    color:#fff;
}
.m_feature .txt_box:hover p {
    display:block;
    opacity:1;
    top:55%;
}
.m_feature .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.m_feature .video_box {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:.83s ease-in-out;
}
.m_feature .video_box.active {
    opacity: 1;
}
.m_feature .video_box .box_wrap {
    height:100%;
}
.m_feature .video_box .box_wrap video {
    width:100%;
    height:100%;
    object-fit: cover;
}

/* m_profit */
.m_profit {
    padding:160px 0 80px;
    background:url('../img/main/profit_bg.jpg') no-repeat center / cover;
}
.m_profit .inner {
    position: relative;
}
.m_profit .ttl_box {
    text-align: center;
}
.m_profit .ttl_box .hidden_wrap + .hidden_wrap {
    margin-top: 30px;
}
.m_profit .ttl_box h3 {
    color:#333333;
}
.m_profit .ttl_box p {
    /* font-family: 'MuseumClassic', serif; */
    font-size: 18px;
    font-weight: 500;
    color:#333333;
    line-height: 1.44;
}
.m_profit .rotate_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:70px;
    right:0;
    width:198px;
    height:198px;
    z-index: 9;
}
.m_profit .rotate_circle:before {
    content:url('../img/main/profit_circle_txt.png');
    display: block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    animation: rotation 20s infinite linear;
}
@keyframes rotation {
    from {
            transform: rotate(0deg);
    }
    to {
            transform: rotate(360deg);
    }
}
.m_profit .slide_wrap {
    transform: translateY(100px);
    opacity: 0;
    transition: .8s .4s;
    margin-top: 55px;
}
.m_profit .slide_wrap.action {
    transform: translateY(0);
    opacity: 1;
}
.m_profit .slick-track {
    display: flex;
    align-items: center;
}
.m_profit .slick-list {
    margin:0 -20px;
}
.m_profit .slick-slide {
    margin:0 20px;
}
.m_profit .slide_box {
    position:relative;
}
.m_profit .slide_box .txt_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,.4);
}
.m_profit .slide_box .txt_box p {
    font-size: 18px;
    font-weight: 700;
    color:#ffffff;
    line-height: 1.22;
    text-align: center;
    opacity:0;
    transition: .5s;
}
.m_profit .slide_box .txt_box:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:6px solid #cd1818;
    box-sizing: border-box;
    opacity:0;
    transition: .5s;
}
.m_profit .slick-center .txt_box p,
.m_profit .slick-center .txt_box:before {
    opacity:1;
}
.m_profit .slick-center .txt_box {
    background-color:rgba(0,0,0,.2);
}
.m_profit .slick-arrow {
    position:absolute;
    top:50%;
    width:25px;
    height:40px;
    font-size:0;
    background:url('../img/common/btn_slide.png') no-repeat center / cover;
    z-index: 9;
}
.m_profit .slick-arrow.slick-prev {
    left:15%;
    transform: translate(-50%,-50%);
}
.m_profit .slick-arrow.slick-next {
    right:15%;
    transform: translate(-50%,-50%) rotate(180deg);
}
.m_profit .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 35px;
    text-align: center;
}
.m_profit .link_box p {
    margin-bottom: 30px;
    font-size: 18px;
    color:#555555;
}

/* m_story */
.m_story {
    padding:160px 0 80px;
    background:url('../img/main/story_bg.jpg') no-repeat center / cover;
}
.m_story .ttl_box {
    margin-bottom: 80px;
    text-align: center;
}
.m_story .ttl_box h3 {
    color:#fff;
}
.m_story .slide_wrap {
    transform: translateY(100px);
    opacity: 0;
    transition: .7s ease-in-out .3s;
}
.m_story .slide_wrap.action {
    transform: translateY(0);
    opacity: 1;
}
.m_story .slide_box {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
}
.m_story .img_box {
    flex:0 0 auto;
    position:relative;
    width:50%;
}
.m_story .img_box img {
    position:relative;
    z-index: 2;
}
.m_story .img_box:before {
    content:'';
    display:block;
    position:absolute;
    bottom:-20px;
    right:-20px;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,.2);
}
.m_story .txt_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:43.33%;
}
.m_story .txt_box .store_name {
    border-radius:40px;
    box-shadow: 0px 6px 22.8px 1.2px rgba(0, 0, 0, 0.26);
}
.m_story .txt_box .info {
    text-align: center;
}
.m_story .txt_box .info strong {
    display: block;
    margin:30px 0;
    font-family: 'MuseumClassic', serif;
    font-size: 24px;
    font-weight: 700;
    color:#fff;
    line-height: 1.33;
}
.m_story .txt_box .info p {
    font-size: 18px;
    color:#ffffff;
    line-height: 1.55;
}
.m_story .ad_guide_txt {
	margin-top: 10px;
	font-size: 15px;
	color: #999;
	text-align: right;
}
.m_story .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:70px;
}
.m_story .sales_now {
    display: flex;
    align-items: flex-start;
    margin:90px 60px 0 auto;
}
.m_story .sales_now dl + dl {
    margin-left: 50px;
}
.m_story .sales_now dl dt {
    margin-bottom: 10px;
    font-size: 18px;
    color:#ffffff;
}
.m_story .sales_now dl dd {
    font-size: 18px;
    color:#ffffff;
}
.m_story .sales_now dl dd strong {
    font-size: 52px;
    font-weight: 400;
}
.m_story .slick-arrow {
    position:absolute;
    top:50%;
    width:25px;
    height:40px;
    font-size:0;
    background:url('../img/common/btn_slide.png') no-repeat center / cover;
    z-index: 9;
}
.m_story .slick-arrow.slick-prev {
    left:-65px;
    transform: translateY(-50%);
}
.m_story .slick-arrow.slick-next {
    right:-65px;
    transform: translateY(-50%) rotate(180deg);
}

/* m_interior */
.m_interior {
    position:relative;
}
.m_interior .ttl_box {
    position:absolute;
    top:170px;
    left:50%;
    transform: translateX(-50%);
    z-index: 11;
}
.m_interior .ttl_box h3 {
    color:#fff;
}
.m_interior .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position:absolute;
    bottom:60px;
    left:50%;
    transform: translateX(-50%);
    z-index: 11;
}
.m_interior .link_box p {
    margin-bottom: 30px;
    font-size: 18px;
    color:#ffffff;
}
.m_interior .interior_wrap {
    width:100%;
}
.m_interior .interior_box {
    position:absolute;
    top:0;
    width:50%;
    height:100%;
    transition:.5s;
}
.m_interior .outside {
    left:0;
}
.m_interior .inside {
    right:0;
}
.m_interior .interior_box {
    cursor:pointer;
}
.m_interior .interior_box:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.8);
    z-index: 8;
    transition:.5s;
}
.m_interior .interior_box h3 {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    font-family: '62570', sans-serif;
    font-size: 24px;
    color:rgba(153,153,153,.6);
    z-index: 9;
    transition:.5s;
}
.m_interior .interior_box:hover h3 {
    color:#fff;
}
.m_interior .interior_box:hover:before {
    background-color:rgba(0,0,0,.3);
}
.m_interior .interior_box .close_btn {
    display: none;
    position:absolute;
    top:160px;
    z-index: 13;
}
.m_interior .interior_box.inside .close_btn {
    left:20px;
}
.m_interior .interior_box.outside .close_btn {
    right:20px;
}
.m_interior .interior_box.active {
    width:100%;
    background-color:#000;
    z-index: 13;
}
.m_interior .interior_box.active .close_btn {
    display: block;
}
.m_interior .interior_box.active:before {
    opacity:0;
    z-index:-1;
}
.m_interior .interior_box.active h3 {
    display: none;
}
.m_interior .interior_box .slide_box {
    height:100%;
}
.m_interior .interior_box .slide_box img {
    min-width:1344px;
    height:100%;
    object-fit: cover;
}
.m_interior .inside .slide_box img {
    display: block;
    margin-left: auto;
} 
.m_interior .interior_box .swiper {
    height:100%;
}
.m_interior .outside .swiper-button-next {
    display: none;
    left:initial;
    right:300px;
}
.m_interior .outside .swiper-button-next:after {
    color:#fff;
}
.m_interior .outside.active .swiper-button-next {
    display: block;
}
.m_interior .inside .swiper-button-prev {
    display: none;
    left:300px;
    right:initial;
}
.m_interior .inside .swiper-button-prev:after {
    color:#fff;
}
.m_interior .inside.active .swiper-button-prev {
    display: block;
}

/* m_store */
.m_store {
    position:relative;
    padding:160px 0 80px;
    text-align: center;
}
.m_store .bg_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.m_store .bg_box:before {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.5);
}
.m_store .bg_box .bg_wrap {
    width:33.33%;
    height:100%;
}
.m_store .bg_box .bg_wrap img {
    width:100%;
    height:100%;
    object-fit: cover;
}
.m_store .ttl_box {
    text-align: center;
}
.m_store .ttl_box * {
    color:#fff;
}
.m_store .ttl_box p {
    margin-top: 25px;
    line-height: 1.44;
}
.m_store .store_type {
    display: flex;
    align-items: center;
    justify-content: center;
    margin:80px 0;
}
.m_store .store_type .type_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width:270px;
    background-color:#000;
    border:15px solid rgba(255,255,255,.4);
    border-radius: 50%;
    box-sizing: border-box;
    background-clip: padding-box;
    opacity:0;
    transform: scale(1.4);
    transition:.5s ease-in; 
}
.m_store .store_type .type_box:before {
    content:'';
    display:block;
    width:100%;
    padding-top:100%;
}
.m_store .store_type .type_box ~ .type_box {
    margin-left: 30px;
}
.m_store .store_type.action .type_box {
    opacity: 1;
    transform: scale(1);
}
.m_store .store_type.action .type_box:nth-child(2) {
    transition-delay: .3s;
}
.m_store .store_type.action .type_box:nth-child(3) {
    transition-delay: .6s;
}
.m_store .store_type p {
    display: flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    font-size: 24px;
    color:#fff;
    line-height: 1.5;
    text-align: center;
}
.m_store .store_story {
    display: inline-block;
    width:100%;
    padding:30px 60px;
    background-color:#fff;
    border-radius:30px;
    text-align: center;
    transform: translateY(100px);
    opacity:0;
    transition:.8s .5s;
}
.m_store .store_story.action {
    transform: translateY(0);
    opacity:1;
}
.m_store .store_story .ment {
    font-size: 18px;
    color:#333333;
    line-height: 1.55;
}
.m_store .store_story .name {
    display: inline-block;
    margin-top: 15px;
    padding:10px 44px;
    font-size: 18px;
    font-weight: 700;
    color:#ffffff;
    background-color:#d51a1a;
    border-radius:20px;
}

/* m_money */
.m_money {
    position:relative;
    background-color:rgba(0,0,0,.5);
}
.m_money .inner {
    display: flex;
    flex-direction: column;
	position:relative;
    height:100%;
    padding:160px 0 80px;
    box-sizing: border-box;
}
.m_money .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.m_money .video_wrap .video_box {
    width:100%;
    height:100%;
}
.m_money .video_wrap video {
    width:100%;
    height:100%;
    object-fit: cover;
}
.m_money .youtube_wrap {
	position:absolute;
	top:55%;
	left:0;
	transform: translateY(-50%);
	width:53%;
}
.m_money .youtube_box {
	position:relative;
	width:100%;
	/* padding-top:56.25%; */
}
.m_money .youtube_box iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.m_money .img_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.m_money .img_wrap .img_box {
    width:100%;
    height:100%;
}
.m_money .img_wrap img {
    width:100%;
    height:100%;
    object-fit: cover;
}
.m_money .ttl_box {
    text-align: center;
}
.m_money .ttl_box * {
    color:#fff;
}
.m_money .ttl_box p {
    margin-top: 25px;
    line-height: 1.33;
}
.m_money .money_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 260px;
    transform: translateX(-200px);
    opacity:0;
    transition: .8s ease-out .3s;
}
.m_money .money_info.action {
    transform: translateX(0);
    opacity:1;  
}
.m_money .money_info .info_box {
    display: inline-flex;
    align-items: flex-end;
    padding:15px 60px;
}
.m_money .money_info .info_box + .info_box {
    margin-top: 24px;
}
.m_money .money_info .info_box span {
    margin-right: 40px;
    font-size: 18px;
    color:#ffffff;
    line-height: 1;
}
.m_money .money_info .info_box p {
    font-size: 52px;
    font-weight: 700;
    color:#fff;
    line-height: 1;
}
.m_money .money_info .best_box {
    background-color:rgba(255,255,255,.8);
    border-radius:10px;
}
.m_money .money_info .best_box span {
    color:#333;
}
.m_money .money_info .best_box p {
    color:#d51a1a;
}
.m_money .money_info .store_name {
    margin:20px 60px;
    font-size: 30px;
    color:#999999;
}
.m_money .money_info .highlight {
	margin-top:24px;
    padding:15px 60px;
    font-size:52px;
    color:#fff;
    -webkit-text-stroke: 0.5px #f2c54c; 
    animation: glow02 2500ms infinite ease-in-out;
}
@keyframes glow02 {
    0%{
        text-shadow: 0px 0px 3px rgba(240,182,24,.24);
    }
    50%{
        text-shadow: 0px 0px 34px #f0b618;
    }
    100%{
        text-shadow: 0px 0px 3px rgba(240,182,24,.24);
    }
}

/* m_value */
.m_value {
    position:relative;
    height:100vh;
    /* background-color:#000; */
}
.m_value .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
}
.m_value .txt_box {
    flex:0 0 auto;
    text-align: center;
}
.m_value .txt_box .txt_wrap {
    font-size:42px;
    color:#ffffff;
    line-height: 1.33;
}
.m_value .txt_box .hidden_wrap {
    overflow: hidden;
}
.m_value .txt_box strong {
    display: inline-block;
    font-weight: 400;
    color:#d51a1a;
    transform: translateY(100%);
    transition: .7s;
}
.m_value .txt_box.action strong {
    transform: translateY(0);
}
.m_value .txt_box span {
    display: inline-block;
    transform: translateY(100%);
    transition: .7s .4s;
}
.m_value .txt_box.action span {
    transform: translateY(0);
}
.m_value .txt_box p {
    margin-top: 25px;
    font-size:18px;
    color:#eeeeee;
    line-height: 1.55;
    transform: translateY(100%);
    transition: 1.2s .7s;
}
.m_value .txt_box.action p {
    transform: translateY(0);
}
.m_value .img_wrap {
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.m_value .img_box {
    border-radius:50%;
    overflow: hidden;
    border:15px solid rgba(255,255,255,.6);
}
.m_value.action .img_box {
}
.m_value .img_box ~ .img_box {
    margin-left: 50px;
}
.m_value .video_wrap {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
.m_value .video_wrap:after {
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.5);
}
.m_value .video_wrap .video_box {
    width:100%;
    height:100%;
}
.m_value .video_wrap video {
    width:100%;
    height:100%;
    object-fit: cover;
}

/* m_taste */
.m_taste {
    position:relative;
    padding:20.313vw 0;
    background:url('../img/main/taste_bg.jpg') no-repeat center / cover;
    overflow: hidden;
}
.m_taste .inner {
    display: flex;
    align-items: center;
}
.m_taste .txt_box {
    flex:0 0 auto;
    z-index: 9;
}
.m_taste .txt_box .hidden_wrap {
    overflow: hidden;
}
.m_taste .txt_box strong {
    display: block;
    font-size:42px;
    font-weight: 400;
    color:#d51a1a;
    line-height: 1.33;
    transform: translateY(100%);
    transition: .5s;
}
.m_taste .txt_box span {
    display: block;
    font-size:42px;
    color:#ffffff;
    line-height: 1.33;
    transform: translateY(100%);
    transition: .5s .3s;
}
.m_taste .txt_box p {
    margin-top: 25px;
    font-size:18px;
    color:#eeeeee;
    line-height: 1.55;
    transform: translateY(100%);
    transition: .5s .6s;
}
.m_taste .txt_box.action span,
.m_taste .txt_box.action strong,
.m_taste .txt_box.action p {
    transform: translateY(0);
}
.m_taste .img_box {
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
}
.m_taste .img_wrap {
    position:absolute;
    width:19.792vw;
    opacity:0;
    transform: translateY(100px);
    transition: .5s ease-in-out;
}
.m_taste .img_box.action .img_wrap {
    opacity:1;
    transform: translateY(0);
}
.m_taste .menu_txt {
    position:absolute;
}
.m_taste .menu_txt p {
    font-size:1.250vw;
    font-weight: 500;
    color:#fff;
    white-space: nowrap;
}
.m_taste .img_wrap.img01 {
    top:14.271vw;
    right:15.156vw;
}
.m_taste .img_wrap.img01 .menu_txt {
    top: calc(100% + 1.042vw);
    left: 50%;
    transform: translateX(-50%);
}
.m_taste .img_wrap.img02 {
    top:-4.167vw;
    right:32.240vw;
    transition-delay: .3s;
}
.m_taste .img_wrap.img02 .menu_txt {
    top: calc(100% + 1.042vw);
    left: 50%;
    transform: translateX(-50%);
}
.m_taste .img_wrap.img03 {
    top:-4.167vw;
    right:-2.344vw;
    transition-delay: .6s;
}
.m_taste .img_wrap.img03 .menu_txt {
    top: calc(100% + 1.042vw);
    left: 50%;
    transform: translateX(-50%);
}
.m_taste .img_wrap.img04 {
    top:18.958vw;
    right:-7.708vw;
    transition-delay: .9s;
}
.m_taste .img_wrap.img04 .menu_txt {
    top: calc(100% + 1.042vw);
    left: 3.646vw;
}
.m_taste .img_wrap.img05 {
    top:39.115vw;
    right:13.229vw;
    transition-delay: 1.2s;
}
.m_taste .img_wrap.img05 .menu_txt {
    top:11.458vw;
    right:-5.729vw;
}
.m_taste .img_wrap.img06 {
    top:24.167vw;
    right:38.073vw;
    transition-delay: 1.5s;
}
.m_taste .img_wrap.img06 .menu_txt {
    top: calc(100% + 1.042vw);
    left: 50%;
    transform: translateX(-50%);
}

/* m_location */
.m_location {
    padding:160px 0 40px;
    background:url('../img/main/location_bg.jpg') no-repeat center / cover;
}
.m_location .inner {
    position:relative;
}
.m_location .ttl_box {
    margin-bottom: 60px;
    color:#fff;
    text-align: center;
}
.m_location .ttl_box p {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 500;
}
.m_location .loc_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transform: translateY(100px);
    opacity: 0;
    transition: .5s ease-in-out;
}
.m_location .loc_box.action {
    transform: translateY(0);
    opacity: 1;
}
.m_location .loc_tab {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex:0 0 auto;
    width:49.16%;
}
.m_location .loc_tab button {
    width:calc(25% - 7.5px);
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    color:#dddddd;
    box-sizing: border-box;
    border-radius: 20px;
    border:1px solid #ffffff;
    transition: .5s;
}
.m_location .loc_tab button:nth-of-type(4n+0) {
    margin-right: 0;
}
.m_location .loc_tab button.active,
.m_location .loc_tab button:hover {
    font-weight: 500;
    color:#fff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.m_location .loc_map {
    position:relative;
    width: 100%;
    max-width: 422px;
    margin-right: 80px;
}
.m_location .loc_map .mark {
    position:absolute;
    padding-bottom: 50px;
    opacity:0;
}
.m_location .loc_map .seoul01 { top:31px; left:110px; }
.m_location .loc_map .seoul02 { top:31px; left:110px; }
.m_location .loc_map .seoul03 { top:31px; left:110px; }
.m_location .loc_map .suwon01 { top:55px; left:110px; }
.m_location .loc_map .suwon02 { top:55px; left:110px; }
.m_location .loc_map .suwon03 { top:55px; left:110px; }
.m_location .loc_map .suwon04 { top:55px; left:110px; }
.m_location .loc_map .suwon05 { top:55px; left:110px; }
.m_location .loc_map .hwaseong01 { top:62px; left:103px; }
.m_location .loc_map .paju01 { top:10px; left:85px; }
.m_location .loc_map .daejeon01 { top:172px; left:146px; }
.m_location .loc_map .daejeon02 { top:172px; left:146px; }
.m_location .loc_map .daejeon03 { top:172px; left:146px; }
.m_location .loc_map .daejeon04 { top:172px; left:146px; }
.m_location .loc_map .daejeon05 { top:172px; left:146px; }
.m_location .loc_map .daejeon06 { top:172px; left:146px; }
.m_location .loc_map .sejong01 { top:148px; left:133px; }
.m_location .loc_map .sejong02 { top:148px; left:133px; }
.m_location .loc_map .chung01 { top:110px; left:143px; }
.m_location .loc_map .gwangju01 { top:313px; left:93px; }
.m_location .loc_map .gwangju02 { top:313px; left:93px; }
.m_location .loc_map .gwangju03 { top:313px; left:93px; }
.m_location .loc_map .gwangju04 { top:313px; left:93px; }
.m_location .loc_map .mokpo01 { top:351px; left:53px; }
.m_location .loc_map .suncheon01 { top:342px; left:161px; }
.m_location .loc_map .jeonju01 { top:222px; left:121px; }
.m_location .loc_map .jeonju02 { top:222px; left:121px; }
.m_location .loc_map .ulsan01 { top:267px; left:320px; }
.m_location .loc_map .pohang01 { top:217px; left:331px; }
.m_location .loc_map .pohang02 { top:217px; left:331px; }
.m_location .loc_map .pohang03 { top:217px; left:331px; }
.m_location .loc_map .busan01 { top:304px; left:306px; }
.m_location .loc_map .busan02 { top:304px; left:306px; }
.m_location .loc_map .busan03 { top:304px; left:306px; }
.m_location .loc_map .busan04 { top:304px; left:306px; }
.m_location .loc_map .busan05 { top:304px; left:306px; }
.m_location .loc_map .busan06 { top:304px; left:306px; }
.m_location .loc_map .busan07 { top:304px; left:306px; }
.m_location .loc_map .busan08 { top:304px; left:306px; }
.m_location .loc_map .busan09 { top:304px; left:306px; }
.m_location .loc_map .busan10 { top:304px; left:306px; }
.m_location .loc_map .busan11 { top:304px; left:306px; }
.m_location .loc_map .umsung01 { top: 112px; left: 155px; }
.m_location .loc_map .incheon01 { top: 40px; left: 82px; }
.m_location .loc_map .incheon02 { top: 40px; left: 82px; }
.m_location .loc_map .hwasoon01 { top: 324px; left: 115px; }
.m_location .loc_map .boryeong01 { top: 170px; left: 70px; }
.m_location .loc_map .ilsan01 { top: 20px; left: 95px; }
.m_location .loc_map .hongsung01 { top: 143px; left: 65px; }
.m_location .loc_map .siheung01 { top: 90px; left: 100px; }
.m_location .loc_map .bucheon01 { top: 60px; left: 105px; }
.m_location .loc_map .cheonan01 { top: 120px; left: 130px; }
.m_location .loc_map .cheonan02 { top: 120px; left: 130px; }
.m_location .loc_map .jecheon01 { top: 90px; left: 220px; }
.m_location .loc_map .pyeongtack01 { top: 90px; left: 110px; }
.m_location .loc_map .pyeongtack02 { top: 90px; left: 110px; }
.m_location .loc_map .jinyoung01 { top: 290px; left: 260px; }
.m_location .loc_map .dongtan01 { top: 70px; left: 120px; }
.m_location .loc_map .dongtan02 { top: 70px; left: 120px; }
.m_location .loc_map .dongtan03 { top: 70px; left: 120px; }
.m_location .loc_map .ohsan01 { top: 70px; left: 105px; }
.m_location .loc_map .namwon01 { top: 290px; left: 130px; }
.m_location .loc_map .gunpo01 { top: 55px; left: 105px; }
.m_location .loc_map .ansan01 { top: 90px; left: 110px; }
.m_location .loc_map .hanam01 { top: 35px; left: 140px; }

.m_location .loc_map .mark.active {
    opacity:1;
}
.m_location .loc_map .mark:before {
    content:'';
    display:block;
    position:absolute;
    bottom:10px;
    left:70px;
    width:1px;
    height:0;
    background-color:#dddddd;
    transition:.3s;
    transition-delay:.3s;
}
.m_location .loc_map .mark.active:before {
    height:50px;
}
.m_location .loc_map .mark:after {
    content:'';
    display:block;
    position:absolute;
    bottom:0;
    left:65px;
    width:10px;
    height:10px;
    border-radius: 50%;
    border:1px solid #eeeeee;
    background-color:#d51a1a;
    box-sizing: border-box;
    transform:scale(0);
    opacity:0;
    transition:.3s;
}
.m_location .loc_map .mark.active:after {
    transform:scale(1);
    opacity:1;
}
.m_location .loc_map .mark span {
    display: block;
    width:188px;
    font-size: 24px;
    font-weight: 700;
    color:#ffffff;
    line-height: 48px;
    border-radius: 25px;
    background-color:#d51a1a;
    border:1px solid #eeeeee;
    text-align: center;
    transform:scale(0);
    opacity:0;
    transition:.7s;
    transition-delay:.4s;
}
.m_location .loc_map .mark.active span {
    transform:scale(1);
    opacity:1;
}
.m_location .link_box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
	margin-top: 50px;
    /* position:absolute;
    bottom:-120px;
    left:0; */
}
.m_location .link_box p {
    margin-bottom: 30px;
    font-size: 18px;
    color:#ffffff;
}

/* m_news */
.m_news {
    padding-top:160px;
    background-color:#f1f1f1;
}
.m_news .ttl_box {
    color:#333333;
    text-align: center;
    margin-bottom: 30px;
}
.m_news .tab_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: .5s ease-in .3s;
}
.m_news .tab_box.action {
    transform: translateY(0);
    opacity: 1;
}
.m_news .tab_box button {
    width:180px;
    height:60px;
    font-size: 18px;
    color:#999999;
    border:1px solid #cccccc;
    border-radius:30px;
    transition: .5s;
}
.m_news .tab_box button.active,
.m_news .tab_box button:hover {
    font-weight: 500;
    color:#fff;
    border-color:#d51a1a;
    background-color:#d51a1a;
}
.m_news .tab_box button + button {
    margin-left: 10px;
}
.m_news .news_cont {
    transform: translateY(100px);
    opacity: 0;
    transition: .5s ease-in .7s;
}
.m_news .news_cont.action {
    transform: translateY(0);
    opacity: 1;
}
.m_news .news_more_btn {
    display: block;
    width: max-content;
    font-size: 18px;
    color:#333333;
    margin-bottom: 20px;
    margin-left: auto;
}
.m_news .news_more_btn em {
    color:#d51a1a;
}
.m_news .cont_box {
    display: none;
}
.m_news .cont_box.active {
    display: block;
}
.m_news .news_cont .slick-list {
    margin:0 -20px;
}
.m_news .news_cont .slick-track {
    margin: 0;
}
.m_news .news_cont .slick-slide {
    margin:0 20px;
}
.m_news .news_cont .slide_box .img_box {
    position:relative;
    width:100%;
    border:1px solid #dddddd;
    box-sizing: border-box;
}
.m_news .news_cont .slide_box .img_box .img {
    display: block;
    width:100%;
    padding-top: 85.8%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.m_news .news_cont .slide_box .img_box .hover_bg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity: 0;
    transition:.5s;
}
.m_news .slide_insta .slide_box .img_box .hover_bg {
    background: linear-gradient(60deg, rgba(255,246,0,.6) 0%, rgba(255,0,96,.6) 51%, rgba(108,0,255,.6) 90%);
}
.m_news .slide_blog .slide_box .img_box .hover_bg {
    background: rgba(3,199,90,.6);
}
.m_news .news_cont .slide_box .img_box .hover_bg span {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
    color:#ffffff;
}
.m_news .news_cont .slide_box:hover .img_box .hover_bg {
    opacity: 1;
}
.m_news .news_cont .slide_box .txt_box {
    margin-top: 20px;
}
.m_news .news_cont .slide_box .txt_box p {
    display: block;
    font-size: 18px;
    color:#333333;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m_news .news_cont .slick-arrow {
    position:absolute;
    top:50%;
    width:23px;
    height:40px;
    font-size:0;
    background:url('../img/common/btn_slide_black.png') no-repeat center / cover;
    z-index: 9;
}
.m_news .news_cont .slick-arrow.slick-prev {
    left:-63px;
    transform: translateY(-50%);
}
.m_news .news_cont .slick-arrow.slick-next {
    right:-63px;
    transform: translateY(-50%) rotate(180deg);
}
.m_news .notice_box {
    margin-top: 130px;
    border-top:1px solid rgba(231,26,26,.2);
}
.m_news .notice_box .inner {
    display: flex;
    align-items: center;
}
.m_news .notice_box .ttl_box {
    flex:0 0 auto;
    margin-right: 40px;
    margin-bottom: 0;
}
.m_news .notice_box .ttl_box h4 {
    font-size: 18px;
    color:#333333;
}
.m_news .notice_box .notice_list {
    width: calc(100% - 250px);
    padding-left: 48px;
}
.m_news .notice_box .notice_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:30px 0;
}
.m_news .notice_box .ttl_name {
    color:#333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m_news .notice_box .date {
    flex:0 0 auto;
    margin-left: 10px;
    color:#999999;
}
.m_news .notice_box .news_more_btn {
    flex:0 0 auto;
    margin-left: 80px;
    margin-bottom: 0;
}
.m_news .notice_box .slick-arrow {
    position:absolute;
    left:-48px;
    width:16px;
    height:9px;
    font-size:0;
    background:url('../img/common/btn_slide_up.png') no-repeat center / cover;
}
.m_news .notice_box .slick-prev {
    top:20px;
}
.m_news .notice_box .slick-next {
    bottom:20px;
    transform:rotate(180deg);
}



/* responsive */
@media screen and (max-width:1200px) {

    /* visual */
    .visual .cont_now .now_count .number {
        min-width: 610px;
        font-size:120px;
    }

    /* m_location */
    .m_location .loc_box {
        align-items: center;
        flex-direction: column;
    }
    .m_location .loc_tab {
        width:100%;
    }
    .m_location .loc_map {
        margin-right: 0;
        margin-top: 80px;
    }
    .m_location .link_box {
        align-items: center;
        position: relative;
        bottom:inherit;
        margin-top:30px;
    }

} 

@media screen and (max-width:750px) {

	/* popup */
	.hd_pops {
		max-width:calc(100% - 20px);
		top:100px !important;
		left:10px !important;
	}
	.hd_pops_con {
		max-width:100%;
		height:auto !important;
	}
	.hd_pops_con br {
		display: none !important;
	}

    /* common */
    .main h3 {
        font-size:31px;
    }
    .main .more_btn {
        height:40px;
        padding:0 25px;
    }
    .main .more_btn:before {
        width:100%;
        height:40px;
        border-radius:20px;
    }
    .main .more_btn .txt {
        font-size:14px;
    }
    .main .more_btn .ico {
        width:12px;
        margin-top: -10px;
        margin-left: 18px;
    }

    /* visual */
    .visual {
        height:70vh;
    }
    .visual .visual_tab {
        top:30%;
    }
    .visual .visual_tab button {
        width:130px;
        height:40px;
        font-size:14px;
        border-radius:20px;
    }
    .visual .cont_video .ttl_wrap {
        top:calc(30% + 80px);
    }
    .visual .cont_video .ttl_wrap h2 {
        font-size:31px;
        line-height: 1.41;
    }
    .visual .cont_video .ttl_wrap strong {
        display:inline-block;
        width:220px; 
        margin-top:20px;
    }

    .visual .cont_now .inner {
        top:calc(30% + 80px);
    }
    .visual .cont_now .txt_box h2 {
        font-size:31px;
    }
    .visual .cont_now .txt_box h2 strong {
        margin: 0 5px 0 20px;
        width:47px;
    }
    .visual .cont_now .now_count span {
        margin:15px 0;
        font-size:20px;
        line-height: 40px;
    }
    .visual .cont_now .now_count .number {
        min-width: 310px;
        font-size:60px;
    }
    .visual .cont_now .now_count em {
        margin-bottom: 10px;
        font-size:16px;
    }
    .visual .cont_now .video_wrap .video_box video {
        width:100%;
        height:100%;
        object-fit: cover;
    }

    /* m_feature */
	.m_feature {
		height:auto;
	}
    .m_feature .txt_wrap {
        align-items: center;
        justify-content: center;
		flex-direction: column;
    }
	.m_feature .txt_wrap .txt_box {
		width:100%;
		height:370px;
	}
    .m_feature .txt_box strong {
		color:#fff;
        font-size:31px;
    }
    .m_feature .txt_box p {
        display: block;
        padding-top:15px;
        font-size:16px;
		opacity:1;
    }
    .m_feature .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        bottom:40px;
        left:50%;
        transform: translateX(-50%);
        width:100%;
    }
    .m_feature .slick-dots li {
        margin:0 5px;
        font-size:0;
    }
    .m_feature .slick-dots button {
        width:12px;
        height:12px;
        font-size: 0;
        background-color:#fff;
        border-radius: 50%;
        transition: .5s;
    }
    .m_feature .slick-dots .slick-active button {
        width:40px;
        background-color:#d51a1a;
        border-radius:6px;
    }
    .m_feature .video_box {
        position:relative;
		height:370px;
        opacity: 1;
    }

    /* m_profit */
    .m_profit {
        padding:80px 0;
    }
    .m_profit .ttl_box p {
        font-size:15px;
    }
    .m_profit .ttl_box .hidden_wrap + .hidden_wrap {
        margin-top: 15px;
    }
    .m_profit .rotate_circle {
        width:130px;
        height:130px;
    }
    .m_profit .rotate_circle:before {
        content:'';
        background:url('../img/main/profit_circle_txt.png') no-repeat center / cover;
    }
    .m_profit .rotate_circle img {
        width:55px;
    }
    .m_profit .slick-arrow {
        width:12.5px;
        height:20px;
    }
    .m_profit .slick-arrow.slick-prev {
        left:15px;
    }
    .m_profit .slick-arrow.slick-next {
        right:15px;
    }
    .m_profit .slide_box .txt_box p {
        font-size:16px;
    }
    .m_profit .link_box p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    /* m_story */
    .m_story {
        padding:40px 0;
    }
    .m_story .ttl_box {
        margin-bottom: 20px;
    }
    .m_story .slide_box {
        flex-direction: column;
    }
    .m_story .img_box {
        width:100%;
    }
	.m_story .img_box:before {
		bottom:-10px;
		right:-10px;
	}
    .m_story .img_box img {
        width:calc(100% - 10px);
    }
    .m_story .txt_box {
        width:100%;
        margin-top: 30px;
    }
    .m_story .txt_box .store_name {
        width:240px;
    }
    .m_story .txt_box .info strong {
        margin:15px 0;
        font-size:18px;
    }
    .m_story .txt_box .info p {
        font-size:14px;
		word-break: keep-all;
    }
    .m_story .sales_now {
        margin:20px auto;
    }
    .m_story .sales_now dl dt {
        font-size:16px;
    }
    .m_story .sales_now dl dd {
        font-size:14px;
		white-space: nowrap;
    }
    .m_story .sales_now dl dd strong {
        display: inline-block;
        margin-right:5px;
        font-size:31px;
    }
	.m_story .ad_guide_txt {
		margin-top: 30px;
		font-size: 13px;
	}
    .m_story .link_box {
        margin-top: 30px;
    }
    .m_story .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        bottom:-10px;
        left:50%;
        transform: translateX(-50%);
        width:100%;
    }
    .m_story .slick-dots li {
        margin:0 5px;
        font-size:0;
    }
    .m_story .slick-dots button {
        width:12px;
        height:12px;
        font-size: 0;
        background-color:#fff;
        border-radius: 50%;
        transition: .5s;
    }
    .m_story .slick-dots .slick-active button {
        width:40px;
        background-color:#d51a1a;
        border-radius:6px;
    }

    /* m_store */
    .m_store {
        padding:80px 0;
    }
    .m_store .store_type {
        flex-direction: column;
        margin:40px 0;
    }
    .m_store .store_type .type_box ~ .type_box {
        margin-top: 30px;
        margin-left: 0;
    }
    .m_store .store_type .type_box {
        width:100%;
        max-width:210px;
        border-width:10px;
    }
    .m_store .store_type p {
        font-size:20px;
    }
    .m_store .store_story {
        padding:30px 15px;
        border-radius:15px;
    }
    .m_store .store_story .ment {
        font-size:16px;
    }
    .m_store .store_story .name {
        width:100%; 
        margin-top:30px;
        font-size:16px;
    }
	.m_store .bg_box {
		flex-direction: column;
	}
	.m_store .bg_box .bg_wrap {
		width:100%;
		height:33.33%;
	}

    /* m_money */
    .m_money .inner {
        padding:80px 0;
    }
    .m_money .youtube_wrap {
        position: relative;
        top: initial;
        width: 100%;
        margin-top: 30px;
        transform: none;
    }
    .m_money .money_info {
        margin-top: 40px;
    }
    .m_money .money_info .info_box {
        padding:15px;
    }
    .m_money .money_info .info_box span {
        margin-right: 20px;
        font-size:16px;
    }
    .m_money .money_info .info_box p {
        font-size:32px;
    }
    .m_money .money_info .store_name {
        margin:15px;
    }
    .m_money .money_info .info_box + .info_box {
        margin-top:15px;
    }
    .m_money .money_info .highlight {
        padding:25px 15px 0;
        font-size:32px;
        white-space: nowrap;
    }

    /* m_value */
    .m_value {
		height:70vh;
        padding:80px 0;
    }
    .m_value .img_wrap {
        flex-direction: column;
        width:100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .m_value .img_box ~ .img_box {
        margin-left: 0;
        margin-top: 30px;
    }
    .m_value .txt_box {
        flex:inherit;
        padding:0 15px;
    }
    .m_value .txt_box strong {
        display: block;
    }
    .m_value .txt_box .txt_wrap * {
        font-size:31px;
    }
    .m_value .txt_box p {
        margin-top:15px;
        font-size:16px;
    }

    /* m_taste */
    .m_taste {
        padding:80px 0;
    }
    .m_taste .txt_box strong {
        font-size:31px;
    }
    .m_taste .txt_box span {
        font-size:31px;
    }
    .m_taste .txt_box p {
        margin-top: 15px;
        font-size:16px;
    }
    .m_taste .img_box {
        position:relative;
        top:inherit;
        right:inherit;
        height:101.333vw;
    }
    .m_taste .menu_txt p {
        font-size:3.382vw;
    }
    .m_taste .img_wrap {
        width:27.733vw;
    }
    .m_taste .img_wrap.img01 {
        top:36.533vw;
        left:36.533vw;
        right:inherit;
    }
    .m_taste .img_wrap.img02 {
        top:10.667vw;
        right:inherit;
        left:13.333vw;
        transition-delay: .3s;
    }
    .m_taste .img_wrap.img03 {
        top:10.667vw;
        right:13.333vw;
        transition-delay: .6s;
    }
    .m_taste .img_wrap.img04 {
        top:inherit;
        bottom:22.133vw;
        right:4vw;
        transition-delay: .9s;
    }
    .m_taste .img_wrap.img04 .menu_txt {
        left:50%;
        transform: translateX(-50%);
    }
    .m_taste .img_wrap.img05 {
        top:inherit;
        bottom:0;
        right:36.133vw;
        transition-delay: 1.2s;
    }
    .m_taste .img_wrap.img05 .menu_txt {
        top: calc(100% + 1.042vw);
        right:50%;
        transform: translateX(50%);
    }
    .m_taste .img_wrap.img06 {
        top:inherit;
        bottom:22.133vw;
        right:inherit;
        left:4vw;
        transition-delay: 1.5s;
    }

    /* m_location */
    .m_location {
        padding:80px 0;
    }
    .m_location .ttl_box {
        margin-bottom: 30px;
    }
    .m_location .ttl_box p {
        font-size:16px;
    }
    .m_location .loc_tab button {
        width:calc(33.33% - 10px);
        margin-right:15px;
        margin-bottom:15px;
        font-size:14px;
    }
    .m_location .loc_tab button:nth-of-type(4n+0) {
        margin-right: 15px;
    }
    .m_location .loc_tab button:nth-of-type(3n+0) {
        margin-right: 0;
    }
    .m_location .loc_map .mark {
        padding-bottom: 10.667vw;
    }
    .m_location .loc_map .mark span {
        width:42.667vw;
        font-size:5.333vw;
        line-height: 10.133vw;
    }
    .m_location .loc_map .mark:before {
        bottom:0;
        left:20.800vw;
    }
    .m_location .loc_map .mark.active:before {
        height:10.667vw;
    }
    .m_location .loc_map .mark:after {
        width:2.133vw;
        height:2.133vw;
        left:19.733vw;
    }
    .m_location .loc_map {
        max-width:690px;
    }
    .m_location .loc_map .map_wrap img {
        width:100%;
    }
    .m_location .loc_map .seoul01 { top:7.488vw; left:18.599vw; }
    .m_location .loc_map .seoul02 { top:7.488vw; left:18.599vw; }
    .m_location .loc_map .seoul03 { top:7.488vw; left:18.599vw; }
    .m_location .loc_map .suwon01 { top:13.285vw; left:18.599vw; }
    .m_location .loc_map .suwon02 { top:13.285vw; left:18.599vw; }
    .m_location .loc_map .suwon03 { top:13.285vw; left:18.599vw; }
    .m_location .loc_map .suwon04 { top:13.285vw; left:18.599vw; }
    .m_location .loc_map .suwon05 { top:13.285vw; left:18.599vw; }
    .m_location .loc_map .hwaseong01 { top:13.768vw; left:17.150vw; }
	.m_location .loc_map .paju01 { top:1.691vw; left:14.010vw; }
    .m_location .loc_map .daejeon01 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .daejeon02 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .daejeon03 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .daejeon04 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .daejeon05 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .daejeon06 { top:39.130vw; left:26.812vw; }
    .m_location .loc_map .sejong01 { top:33.575vw; left:23.913vw; }
    .m_location .loc_map .sejong02 { top:33.575vw; left:23.913vw; }
    .m_location .loc_map .chung01 { top:25.111vw; left:27.333vw; }
    .m_location .loc_map .gwangju01 { top:69.324vw; left:15.217vw; }
    .m_location .loc_map .gwangju02 { top:69.324vw; left:15.217vw; }
    .m_location .loc_map .gwangju03 { top:69.324vw; left:15.217vw; }
    .m_location .loc_map .gwangju04 { top:69.324vw; left:15.217vw; }
    .m_location .loc_map .mokpo01 { top:77.536vw; left:7.729vw; }
    .m_location .loc_map .suncheon01 { top:76.444vw; left:30.222vw; }
    .m_location .loc_map .jeonju01 { top:50.725vw; left:20.773vw; }
    .m_location .loc_map .jeonju02 { top:50.725vw; left:20.773vw; }
    .m_location .loc_map .ulsan01 { top:59.179vw; left:65.217vw; }
    .m_location .loc_map .pohang01 { top:50.000vw; left:67.217vw; }
    .m_location .loc_map .pohang02 { top:50.000vw; left:67.217vw; }
    .m_location .loc_map .pohang03 { top:50.000vw; left:67.217vw; }
    .m_location .loc_map .busan01 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan02 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan03 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan04 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan05 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan06 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan07 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan08 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan09 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan10 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .busan11 { top:67.874vw; left:61.836vw; }
    .m_location .loc_map .umsung01 { top:24.638vw; left:29.469vw; }
	.m_location .loc_map .incheon01 { top: 10vw; left: 12.222vw; }
	.m_location .loc_map .incheon02 { top: 10vw; left: 12.222vw; }
    .m_location .loc_map .hwasoon01 { top:70.352vw; left:20.101vw; }
    .m_location .loc_map .boryeong01 { top:37.688vw; left:10.050vw; }
    .m_location .loc_map .ilsan01 { top:5.155vw; left:15.464vw; }
    .m_location .loc_map .hongsung01 { top:31.527vw; left:9.360vw; }
    .m_location .loc_map .siheung01 { top:19.9vw; left:17.41vw; }
    .m_location .loc_map .bucheon01 { top:13.681vw; left:18.656vw; }
    .m_location .loc_map .cheonan01 { top:26.119vw; left:22.388vw; }
    .m_location .loc_map .cheonan02 { top:26.119vw; left:22.388vw; }
    .m_location .loc_map .jecheon01 { top:19.324vw; left:42.270vw; }
	.m_location .loc_map .pyeongtack01 { top: 21.11vw; left: 17.77vw; }
	.m_location .loc_map .pyeongtack02 { top: 21.11vw; left: 17.77vw; }
	.m_location .loc_map .jinyoung01 { top: 65.55vw; left: 53.33vw; }
	.m_location .loc_map .dongtan01 { top: 16.279vw; left: 19.767vw; }
	.m_location .loc_map .dongtan02 { top: 16.279vw; left: 19.767vw; }
	.m_location .loc_map .dongtan03 { top: 16.279vw; left: 19.767vw; }
	.m_location .loc_map .ohsan01 { top: 16.279vw; left: 17.442vw; }
	.m_location .loc_map .namwon01 { top: 65.116vw; left: 23.256vw; }
	.m_location .loc_map .gunpo01 { top: 12.472vw; left: 18.821vw; }
    .m_location .loc_map .ansan01 { top:19.9vw; left:20vw; }
    .m_location .loc_map .hanam01 { top:7.609vw; left:26.087vw; }
	

    /* m_news */
    .m_news {
        padding:80px 0 0;
    }
    .m_news .tab_box {
        margin-bottom:40px;
    }
    .m_news .tab_box button {
        width:130px;
        height:40px;
        font-size:14px;
    }
    .m_news .link_box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top:40px;
    }
    .m_news .news_cont .slick-list {
    }
    .m_news .news_cont .slick-slide {
    }
    .m_news .notice_box .news_more_btn {
        display: none !important;
    }
    .m_news .notice_box {
        margin-top:70px;
    }
    .m_news .notice_box .ttl_box {
        margin-right:20px;
    }
    .m_news .notice_box .ttl_box h4 {
        font-size:14px;
    }
    .m_news .notice_box .notice_list {
        width:calc(100% - 70px);
        padding-left:0;
    }
    .m_news .notice_box .notice_list a {
        padding:20px 0;
        font-size:13px;
    }

}