/* 全局樣式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans TC", "Microsoft YaHei", "微軟雅黑", Arial, sans-serif;
    background-color: transparent; /* 移除原本的背景色 */
}
/*kv*/
.kv_wrapper {
	width: 100%;
}
.kv {
	display: block;
}
.mkv {
	display: none;
}
/* 邊框動畫效果 */
.animate-button {
	display: inline-table;
	position: relative;
	padding: 7px 5px;
	margin: 4% 0.5%;
	text-align: center;
	transition: 1s;
}
.animate-button.text-black {
	color: black !important;
}
.animate-button.bg-shopnow {
	background-color: #ffc440;
}
.animate-button:hover {
    background-color: #000000;
}
.yellow-button:hover{
	color: #fff;
	background-color: #000000;
}
.animate-button.bg-seemore {
	background-color: #020100;
	color: white;
	position: absolute;
	bottom: 5%;
}
.animate-button::before {
	content: "";
	width: 0%;
	height: 0%;
	position: absolute;
	bottom: -1px;
	right: -1px;
	transition: 1s;
}
.animate-button:hover::before {
	width: 100%;
	height: 100%;
	border-bottom: 2px solid black; /* eb3e80 */
	/* ffc440 */
	border-right: 2px solid black; /* eb3e80 */
}
.animate-button::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: -1px;
	left: -1px;
	transition: 1s;
}
.animate-button:hover::after {
	width: 100%;
	height: 100%;
	border-top: 1px solid black;
	/* ffc440 */
	border-left: 1px solid black;
}

.top__area__bg {
    margin-top: -34vw;
}
/*discount*/
.mb-adj{
	margin: 17% auto;
}
.discount__date {
    color: #723f24;
    font-weight: bold;
    font-size: 1.05em;
}
.discountTitle__number{
	width: 40%;
	margin: auto;
	color: white;
	filter: drop-shadow(2px 4px 6px rgb(253, 255, 236));
	padding: 2px 0;
}
.discountTitle__number__icon {
    position: absolute;
    max-width: 30%;
    right: 37%;
    top: -9%;
    margin: auto;
}
.discountArea__title{
	margin-left: 10%;
	max-width: 34%;
}
.discountArea {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent; 
	padding-bottom: 0%;
}
.discountBox__icon {
    max-width: 33%;
    position: absolute;
    right: 5%;
	top: 52%;
}

@keyframes floating-icon {
    0% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }

    50% {
      -webkit-transform: translateY(4px);
      -moz-transform: translateY(4px);
      -ms-transform: translateY(4px);
      -o-transform: translateY(4px);
      transform: translateY(4px);
    }

    100% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  }
.discountBox {
    position: relative;
    display: flex;
    width: 55%;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.discountBox ul li {
	list-style: none;
}

.discountBox__default {
    position: relative;
    text-align: left;
    width: 28%;
    margin: 0;
    padding: 2%;
    background-size: contain;
    background-repeat: no-repeat;
}
.discountbg1 {
    background-image: url(../images/event_1.png);
    padding: 26% 0 0%;
    margin: 0 0.5% auto;
    background-size: 100%;
    text-align: center;
}
.discountbg2 {
    background-image: url(../images/event_2.png);
    padding: 26% 0 0%;
    margin: 0 1% auto;
    background-size: 100%;
	text-align: center;
}
.discountbg3 {
    background-image: url(../images/event_3.png);
    padding: 26% 0 0%;
    margin: 0 1% auto;
    background-size: 100%;
	text-align: center;
}
.discountbg4 {
    background-image: url(../images/event_4_V2.png);
    padding: 26% 0 0%;
    margin: 0 1% auto;
    background-size: 100%;
    text-align: center;
}
.discountbg5 {
    background-image: url(../images/event_5.png);
    padding: 26% 0 0%;
    margin: 0 1% auto;
    background-size: 100%;
    text-align: center;
}
.discountbg6 {
    background-image: url(../images/event_6.png);
    padding: 26% 0 0%;
    margin: 0 1% auto;
    background-size: 100%;
	text-align: center;
}
.discount_btn img {
    margin: -24% -22%;
    width: 43%;
    position: absolute;
}
.discount_btn img:nth-of-type(2):hover{
	opacity:0;
}
.btn-shop {
    margin-left: 47%;
}
.info_btn img {
    margin-top: -26%;
}
@keyframes hightlight {
	0% {
		opacity: 1;
	}
	15% {
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.lightning {
	display: inline-block;
	position: absolute;
	max-width: 10%;
	height: auto;
	right: 15%;
	top: 47%;
	z-index: 1;
	animation: lightning 1.4s infinite;
}
@keyframes lightning {
	0% {
		opacity: 1;
	}
	20% {
		opacity: 0;
	}
	35% {
		opacity: 1;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*******************event highlight*******************/
.eh_wrap {
    width: 100%;
    height: auto;
    background-color: #96b2c9;
    background-position: center top;
    background-size: auto;
    background-repeat: repeat-y;
    position: relative;
}
.eh_wrap::before {
  content: "";
  width:100%;
  height:146px;
  display:block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position:absolute;
  top:-1px;
  z-index:2;
}
.eh {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    padding: 3.5vw 16px 1.3vw 16px;
    box-sizing: border-box;
}
.eh_title {
    width: 41%;
    height: auto;
    margin: 0px auto 2vw auto;
}
.eh_flexG3_container {
    width:100%; /*電腦版宮格總寬度-可調整*/
    margin:0px auto;
    display:flex;
    display: -webkit-flex;
    flex-wrap:wrap;
    justify-content:space-between;
    transition:  0.2s;
    padding:0;
    box-sizing: border-box;
}
.eh_flexG3_container a, .eh_flexG3_container img {
    width:100%;
    height:auto;
    display:block;
}    
.eh_flexG3_item {
    flex-basis: 32.5%;
    margin-bottom: 2.5vw;
    border: 3px solid #000;
    background-color: white;
    padding-bottom: 16px;
}
.eventInfo {
  padding: 8px 0;
  text-align: center;
}
.eventTitle {
    font-size: 20px;
    font-weight: 900;
    line-height: 35px;
    color: #000;
}
.eventDesc {
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.btn_event {
  width: 36%;
  margin:0 auto;
  color: #fff;
  background-color: #5b4419;
  margin-top:0.5vw;
}

/*******************
pop-up
*******************/

/***** popup's controler *****/

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}
/***** popup's appearance *****/

/* Modal */

.pop-modal {
	background-color: rgba(0, 0, 0, .65);
	display: none;
	overflow: auto;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 10%;
}
.pop-modal_title2 {
    margin: 2% auto auto 6%;
    font-weight: 600;
    font-size: 1.1em;
    color: #877164;
}
.pop-modal_sec li {
    margin-left: 11% !important;
    list-style: disc !important;
    color: #3082d6;
}
/* Modal Content */

.modal-content {
	position: relative;
	top: 0px;
	width: 600px;
	margin: 0 auto;
	background-color: #434343;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.modal-animated-in {
	animation: totop-in .3s ease;
}
.modal-animated-out {
	animation: totop-out .3s ease forwards;
}
.modal-header {
    background-color: #a24151;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
}
.modal-content .close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #f5aab7;
    width: 60px;
    height: 60px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.modal-content .close:hover {
	background-color: #000;
}
.modal-header h3 {
    color: #fff;
    /* text-shadow: 1px 0px rgb(255 255 255); */
    font-weight: bolder;
    font-size: 20px;
}
/* Modal Body */
.modal-body {
    padding: 20px 27px 20px 20px;
    line-height: 30px;
    font-size: 15px;
    color: #a24151;
    background-color: #fff;
}
.modal-body h3 {
	font-size: 18px;
}
.modal-body-inner {
	overflow-y: auto;
	height: 350px;
	padding: 0 30px 0 10px;
}
.modal-body-inner hr {
	width: 97%;
}
.modal-body-inner h3 {
	margin-bottom: 5px;
	/* color: #edff00; */
}
.modal-body-inner::-webkit-scrollbar-track {
	background-color: #dfdddd;
}
.modal-body-inner::-webkit-scrollbar {
	width: 5px;
	background-color: white;
}
.modal-body-inner::-webkit-scrollbar-thumb {
    background-color: #a24151;
}
.modal-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.modal-body ul li {
    position: relative;
    margin-left: 30px;
    list-style-type: decimal-leading-zero;
    color: #666;
}
.modal-body ul li::before {
	position: absolute;
	color: #5cc560;
	left: -20px;
	top: 10px;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.modal-body a {
    color: #ef94a3;
}
.modal-body a:hover {
	color: #3082d6;
	transition: all .2s linear;
}
.modal-body-text-wrap {
	margin-bottom: 20px;
}
.modal-body-text {
	font-size: 15px;
}
.modal-body-text-wrap h5 {
    color: #a24151;
    font-weight: 600;
    /*font-size: 1.1em;*/
}
.modal-body-text-wrap p {
    color: #9C2020;
}
/* Modal Footer */

.modal-footer {
	background-color: #656464;
	width: 100%;
	height: 60px;
	line-height: 60px;
	padding-left: 20px;
}
/*sidenav*/
.menu {
	position: fixed;
	z-index: 29;
}
.menu__style {
    background-color: #fff;
    border: #000 solid 2px;
    text-align: center;
}
.menu ul li {
    font-weight: 600;
    opacity: 1 !important;
    color: #000;
    display: inline-block;
    border-bottom: 1px solid #a24151;
    width: 85%;
}
.menu ul li a{
	filter: none;
}
.menu ul li:hover {
    color: #a24151;
}
.menu>img {
        /*filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .8));*/
    }
/* hide sidenav 黏人精*/

#sidebar {
	transition: all 300ms linear;
}
#sidebar.active {
	right: -800px;
}
#sidebar .toggle-btn {
    position: fixed;
    right: 0px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #a24151;
}

/* 收合導覽黏人精*/
#sidebar .toggle-btn span {
    display: block;
    width: 30px;
    height: 90px;
    color: #fff;
    margin: 1px 0px;
    padding: 1px 0;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}
/*toTop*/
.toTop-arrow {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    opacity: 0.8;
    background: #a24151;
    color: #ffffff;
    cursor: pointer;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding-top: 5px;
    z-index: 999;
}
.toTop-arrow::before, .toTop-arrow::after {
    width: 10px;
    height: 3px;
    border-radius: 5px;
    top: 10px;
    background: #ffffff;
    position: absolute;
    content: "";
}
.toTop-arrow::before {
	transform: rotate(-45deg) translate(0, -50%);
	left: 1.1rem;
}
.toTop-arrow::after {
	transform: rotate(45deg) translate(0, -50%);
	right: 1.1rem;
}
.toTop-arrow:focus {
	outline: none;
}

/* scroll Menu */
#section-menu {
	position: fixed;
	top: 40%;
	right: 0;
	z-index: 3000;
	text-transform: uppercase;
	-webkit-transition: all ease 0.1s;
	transition: all ease 0.1s;
}
#section-menu.freeze {
	right: -112px;
}
.touch #section-menu {
	display: none;
}
#section-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#section-menu li {}
#section-menu a {
	float: right;
	clear: both;
	display: block;
	height: 2em;
    line-height: 2em;
    font-weight: 600;
	text-decoration: none;
	padding: 0 16px;
	background: #0101a1; /* #1212eed1; */
	color: #ffea06eb; /* #ffea06eb; */
	white-space: nowrap;
	-webkit-transition: all ease 0.1s;
	transition: all ease 0.1s;
}
#section-menu.freeze a {
	float: none;
	width: 128px;
}
#section-menu a:hover{
    background: #04041fd7; /*  */
    color: #fff;
	font-size: 1.2em;
}
#section-menu a span {
	display: none;
	font-weight: 700;
	position: relative;
	width: 48px;
	left: -16px;
	text-align: center;
	background: rgba(0,0,0,0.1); /* #fafd4a*/
}
#section-menu a.active {
    background:#428152; /* #fff821; */
    font-size: 1.2em;
    font-weight: 700;
    color:#fff; /* #fff821; */
}
#section-menu.freeze a span {
	display: inline-block;
}
#section-menu a.active span {
	display: inline-block;
    background:#12772b; /* 040493 #000; */
    color:#fff821; /* #ffff0b; */
}
#section-menu a.active span:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	background: rgba(255,255,255,0.25);
}
#section-menu.freeze a.active span:before {
	display: none;
}


/*免稅必逛市價五折起*/
.dutyArea {
    background-image: url(../images/bg_dutyfree.jpg);
    background-size: cover;
    margin-top: -1vw;
    padding-bottom: 2vw;
    height: 106vw;
}
.title_duty {
    width: 30%;
    margin: 9vw 35% 1vw;
}
.dutyWrap {
    text-align: center;
    width: 74%;
    margin: 0 13%;
}
.dutyWrap a {
    display: inline-flex;
    margin: 1vw;
    width: 18%;
}
.dutyWrap a:hover{
	transform: rotate(5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.dutyBtn {
    display: inline-flex;
    width: 24%;
    margin: 0vw 38% 0;
}
.dutyBtn a {
    margin: 1vw;
}
.dutyBtn a img:hover{
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
/*免稅必逛市價五折起*/
.skinArea {
    background-image: url(../images/bg_skin.jpg);
    background-size: cover;
    margin-top: -1vw;
    padding-bottom: 2vw;
    height: 70vw;
}
.title_skin {
    width: 30%;
    margin: 3vw 35% 1vw;
}
.skinWrap {
    text-align: center;
    width: 62%;
    margin: 0 19%;
}
.skinWrap a {
    display: inline-flex;
    margin: 0vw;
    width: 25%;
}
.skinWrap a:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.skinBtn {
    width: 14%;
    margin: 1.5vw 42% 0;
}
.skinBtn a {
    margin: 1vw;
}
.skinBtn a img:hover{
	transition: all .1s linear;
	-webkit-filter: saturate(180%);
    filter: saturate(180%);
}
/*時尚配件 3件8折*/
.fashionArea {
    background-image: url(../images/bg_fashion.jpg);
    background-size: cover;
    margin-top: -1vw;
    padding-bottom: 2vw;
    height: 58vw;
}
.title_fashion {
    width: 40%;
    margin: 3vw 30% 2vw;
}
.fashion_box {
    position: absolute;
    text-align: center;
    z-index: 20;
    margin: auto 10%;
    width: 80%;
}
.fashion_wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
}
.fashion_s {
    width: 30%;
}
.fashion_space {
    margin-bottom: -13.5vw;
}
.fashion_1 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A01.png") no-repeat;
	background-size: contain;
}
.fashion_1:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_2 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A02_V2.png") no-repeat;
	background-size: contain;
}
.fashion_2:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_3 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A03.png") no-repeat;
	background-size: contain;
}
.fashion_3:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_4 {
    width: 100%;
    height: 27vw;
    background: url(../images/fashion_item_B01.png) no-repeat;
    background-size: contain;
}
.fashion_4:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_5 {
    width: 100%;
    height: 13.5vw;
    background: url(../images/fashion_item_A04.png) no-repeat;
    background-size: contain;
}
.fashion_5:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_6 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A05.png") no-repeat;
	background-size: contain;
}
.fashion_6:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_7 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A06.png") no-repeat;
	background-size: contain;
}
.fashion_7:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.fashion_8 {
    width: 85%;
    height: 13.5vw;
    background: url("../images/fashion_item_A07.png") no-repeat;
	background-size: contain;
}
.fashion_8:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
/*話題爆品*/
.flashArea {
    background-image: url(../images/bg_flash.jpg);
    background-size: cover;
    margin-top: -1vw;
    height: 58vw;
}
.title_flash {
    width: 30%;
    margin: 3vw 35% 2vw;
}
.flash_box {
    position: absolute;
    text-align: center;
    z-index: 20;
    margin: auto 10%;
    width: 80%;
}
.flash_wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*width: 25%;*/
}
.flash_1 {
    width: 100%;
    height: 18vw;
    background: url(../images/flash_item_A.png) no-repeat;
    background-size: contain;
}
.flash_1:hover{
	transform: rotate(-5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_2 {
    width: 89%;
    height: 17.5vw;
    background: url(../images/flash_item_B01.png) no-repeat;
    background-size: contain;
}
.flash_2:hover{
	transform: rotate(-5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_3 {
    width: 89%;
    height: 17.5vw;
    background: url(../images/flash_item_B02.png) no-repeat;
    background-size: contain;
}
.flash_3:hover{
	transform: rotate(5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_4 {
    width: 100%;
    height: 18vw;
    background: url(../images/flash_item_B03.png) no-repeat;
    background-size: contain;
}
.flash_4:hover{
	transform: rotate(5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_5 {
    width: 100%;
    height: 18vw;
    background: url(../images/flash_item_B04.png) no-repeat;
    background-size: contain;
}
.flash_5:hover{
	transform: rotate(-5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_space {
    margin-bottom: -18vw;
}
.flash_6 {
    width: 100%;
    height: 35.2vw;
    background: url(../images/flash_item_C.png) no-repeat;
    background-size: contain;
}
.flash_6:hover{
	transform: rotate(5deg);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}
.flash_A {
    width: 38%;
}
.flash_B {
    width: 19%;
}
.flash_C {
    width: 25%;
}
.flash_A_two {
    display: flex;
    width: 100%;
}
/*brand*/
.brandArea {
    width: 100%;
    margin: -8% auto 8%;
    padding-top: 3%;
    text-align: center;
    background-image: url(../images/bg_dutyfree.jpg);
    background-size: cover;
}
.brandTitleBox {
    padding-top: 2%;
    margin-bottom: 1.5%;
}

.brandBox {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 2%;
}

.brandContentBox {
    width: 20%;
    background-color: #edebec;
    padding: 1.5% 0 0;
    display: inline-table;
    margin: 0 0.8% 2%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.brandContentBox:hover{
	transform:scale(1.03,1.03);
	transition: all .1s linear;
	-webkit-filter: saturate(180%); /* Safari */
    filter: saturate(180%);
}

.brandTitleTag {
    color: #9f4267;
    border: 1px solid #9f4267;
    display: inline-block;
    padding: 1% 4%;
    font-size: 0.75vw;
    line-height: 1.2em;
}

.brandTitleTag_H {
    border: 1px solid #b13135;
    display: inline-block;
    padding: 1% 4%;
    font-size: 0.75vw;
    line-height: 1.2em;
    visibility: hidden;
}

.brandTitle {
    text-transform: uppercase;
    font-size: 1.6em;
    color: #5f1c36;
    margin: 3% auto 2%;
}

.brandTitle02 {
    font-size: 1.1em;
    line-height: 1em;
    margin-bottom: 1vw;
    color: #555;
}

.brandPic {
    margin-top: 2%;
    bottom: -3px;
    position: relative;
}

.btn_brand {
    position: absolute;
    font-size: 0.8vw;
    left: 25%;
    bottom: 8%;
    width: 50%;
	padding: 0 7%;
    color: #fff;
    background-color: #5f1c36;
    border-radius: 20px;
    font-weight: 600;
    line-height: 2.2em;
    text-align: center;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn_brand:hover{
	background-color: #000;
}
.title_brand {
    width: 40%;
    margin: 1vw 30% 2vw;
}
/*event*/
.eventArea {
    width: 100%;
    margin: -8% auto;
    height: 80vw;
    text-align: center;
    background-image: url(../images/bg_fashion.jpg);
    background-size: cover;
}
.title_event {
    width: 40%;
    margin: 1vw 30% 0;
}
.highlight-event-box-wrap {
    text-align: center;
    height: 38vw;
}
.highlight-event-box-wrap ul {
    width: 75%;
    margin: 0 auto;
}
.highlight-event-box-wrap ul li {
    width: 22%;
    margin: 2% 0.5%;
    padding: 0.5% 0.5% 1%;
    display: inline-table;
    text-align: center;
    color: #fff;
    background-color: #edebec;
}
.highlight-event-box-img-wrap img {
	width: 100%;
	/* opacity: .9; */
}
.highlight-event-box-text-wrap h4 {
    font-size: 1.3em;
    line-height: 35px;
    color: #5f1c36;
    margin: 2% auto 1%;
}
.highlight-event-box-content {
    line-height: 1.3em;
    color: #555;
}
.highlight-event-box-wrap .btn-wrapper {
	margin: 10px auto;
}
.highlight-event-box-btn {
    margin: 3% auto;
	width: 30%;
	color: #fff;
    background-color: #5f1c36;
    line-height: 1.2vw;
    font-size: 1em;
}
.highlight-event-box-btn:hover{
	background-color: #000;
}
.highlight-event-box-wrap ul li:hover{
	transform:scale(1.01,1.01);
	transition: all .1s linear;
}
/*follow us*/
.title_follow {
    width: 26%;
    margin: 2vw 30% 0;
}
.socialArea {
    width: 100%;
    text-align: center;
    padding-top: 0%;
    clear: both;
    display: inline-block;
    background-color: #633979;
}
.socialTitle {
    position: absolute;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    background-color: #5d2132;
    width: 10%;
    margin: 0 45%;
    padding: 0.5vw;
    border-radius: 20px;
}
.socialTitle02 {
    font-size: 1.2vw;
    padding: 0.5% 1.5%;
    margin: 5% 0;
    font-weight: 600;
}
.socialBox {
    background-color: #b55571;
    padding: 3%;
    width: 80%;
    margin: 1.5% auto 2%;
    border-radius: 20px;
}

.socialBox00 {
    width: 20%;
    background-color: #edebec;
    margin: 0 1%;
    padding: 3% 2%;
    display: inline-table;
}

.socialBox00:hover {
    transform: scale(1.05);
    transition: all .2s cubic-bezier(0, 0, 0.58, 0);
}

.socialBox00 li {
    list-style: none;
    color: #333;
}
.socialIcon {
    width: 28%;
    margin: 0 auto;
}

.socialInfo,
.socialBtn {
    font-size: 1vw;
}

.socialInfo {
    line-height: 1.5em;
    margin-bottom: 10%;
}

.socialBtn:hover {
    color: #a24151;
}