/**************************************************************************
 * style.css 2016/08/29
 * Copyright (c) 2016, GA. All Rights Reserved.
===========================================================================
 * [前台] 前台用 css
===========================================================================
 * @copyright 2016
 * @author GA
***************************************************************************/

/**************************************************************************
 一. 基本設定
***************************************************************************/
@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*思源*/
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}
del,
ins {
  text-decoration: none;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup,
sub {
  vertical-align: baseline;
}
legend {
  color: #000;
}
/* base */
h1 {
  font-size: 138.5%;
}
h2 {
  font-size: 123.1%;
}
h3 {
  font-size: 108%;
}
h1,
h2,
h3 {
  margin: 1em 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
dt {
  font-weight: bold;
}
optgroup {
  font-weight: normal;
}
abbr,
acronym {
  border-bottom: 1px dotted#000;
  cursor: help;
}
em {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
blockquote,
ul,
ol,
dl {
  margin: 1em;
}
ol,
ul,
dl {
  margin-left: 2em;
}
ol {
  list-style: decimal outside;
}
ul {
  list-style: disc outside;
}
dl dd {
  margin-left: 1em;
}
th,
td {
  padding: 0.5em;
}
th {
  font-weight: bold;
  text-align: center;
}
caption {
  margin-bottom: 0.5em;
  text-align: center;
}
sup {
  vertical-align: super;
}
sub {
  vertical-align: sub;
}
p,
fieldset,
table,
pre {
  margin-bottom: 1em;
}
button,
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"] {
  padding: 1px;
}
img {
  -ms-interpolation-mode: bicubic;
}
/* fonts */
body {
  font: 12px/1.231 arial, helvetica, clean, sans-serif;
  *font-size: small;
  *font: x-small;
}
select,
input,
textarea,
button {
  font: 99%arial, helvetica, clean, sans-serif;
}
table {
  font-size: inherit;
  font: 100%;
}
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

body {
  color: #000000;
  background-color: #ffffff;
  font-family: "Montserrat", "Noto Sans TC", "微軟正黑體",
  "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ;
  font-weight: 300; /*有100.300.400.500.700.900*/
  background: repeat url(../imgs/bg01.jpg) top;
}

a:link {
  color: #666;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a:visited {
  color: #666;
  text-decoration: none;
}
/*a:hover{
	opacity: 0.7;
	text-decoration:none;
}
a:active{
	opacity: 0.7;
	text-decoration:none;
}*/

ol,
ul {
  margin: 0;
  padding: 0;
}

/*反白*/
::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}

/*-----------------------------
/ load
/------------------------------*/
#LoadingBar {
  position: fixed;
  height: 100vh;
  width: 100%;
  background: #fff;
}
.spinner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: #000;

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

/**************************************************************************
 二. 內容設定
***************************************************************************/
/*寬度以iphone6 375px為初始設定*/

/* 區塊設定 */
#fullpage {
  width: 100%;
}

/* header */
#header {
  position: fixed;
  z-index: 1040;
  width: 100%;
  height: 53px;
  background-color: #000;
}
.logo {
  width: 162px;
  margin: 10px auto;
}
.logo img {
  width: 100%;
}

/*hamburger*/
#hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  height: 18px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out 0s;
  width: 18px;
}
#hamburger span {
  background: #fff none repeat scroll 0 0;
  border-radius: 9px;
  display: block;
  height: 1px;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out 0s;
  width: 100%;
  box-shadow: 1px 0px 3px 1px rgba(0, 0, 0, 0.3);
}
#hamburger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 6px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  left: 3px;
}

#hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12px;
  left: 3px;
}
/*menu*/
.menu {
  position: fixed;
  z-index: 1039;
  overflow-y: auto;
  top: 53px;
  left: 0;
  width: 100%;
  /*max-height: 100%;*/
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.85);
  /*padding-bottom: 220px;*/
}
ul.sns {
  margin: 25px auto;
  width: 310px;
  text-align: center;
}
ul.sns li {
  position: relative;
  display: inline-block;
  border-left: 1px solid #565759;
  /* padding: 2px 2em; */
  height: 15px;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.sns li.last {
  border-right: 1px solid #565759;
}
ul.sns li img {
  position: relative;
  top: -3px;
  padding: 2px 1.6em;
  height: 18px;
}
ul.sns li:hover {
  opacity: 1;
}
ul.txtMenu {
  margin: 0 auto;
  width: 310px;
  font-size: 18px;
  font-family: "Calibri", "Noto Sans TC", "Microsoft JhengHei", "sans-serif";
}
ul.txtMenu li {
  position: relative;
  margin-bottom: 1.5em;
  opacity: 0.7;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/*ul.txtMenu a{

}*/
ul.txtMenu a:visited {
  color: #fff;
  opacity: 0.7;
}
ul.txtMenu li:hover {
  opacity: 1;
}
ul.txtMenu a::before {
  position: absolute;
  top: 6px;
  left: -35px;
  /*content: url('../imgs/logo_menu.png');*/
  width: 20px;
  opacity: 0;
}
ul.txtMenu a:hover::before {
  left: -25px;
  opacity: 1;
}
ul.txtMenu li.active a {
  opacity: 1;
}
ul.txtMenu li.active a::before {
  left: -25px;
  opacity: 1;
}
.menu .video {
  position: relative;
  width: 310px;
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 120px;
}
.menu .video .videoImg {
  position: relative;
  width: 100%;
  height: 158px;
  overflow: hidden;
}
.menu .video img {
  position: absolute;
  width: 100%;
}
.videoBg {
  width: 128%;
  height: 100%;
  object-fit: cover;
  z-index: 1600;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.videoBg:hover {
  opacity: 0;
}
.videoYT {
  top: -24px;
}
.video h5 {
  position: absolute;
  top: 164px;
  color: #fff;
  opacity: 0.7;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  padding-bottom: 50px;
}

/* main */
#main {
  min-height: 390px;
}

/* footer */
#section6 {
  /*background-image: url(../imgs/bg01.jpg);*/
  background-repeat: repeat;
  text-align: center;
  color: #6e6d6d;
}
#section6 ul {
  margin: 1em auto;
}
#section6 ul li {
  position: relative;
  background-color: #bfbfbf;
  border-radius: 25px;
  display: inline-block;
  height: 35px;
  width: 35px;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#section6 ul li:hover {
  background-color: #000;
}
#section6 ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#section6 ul li img {
  position: relative;
  top: 8px;
  vertical-align: middle;
  height: 17px;
}
#section6 h5 {
  font-weight: 300;
  line-height: 20px;
}
.bottom {
  width: 100%;
  background-color: #1a1a1c;
  margin-top: 5px;
  padding: 5px 0;
}
.bottom h5 {
  color: #909090;
  margin-bottom: 0;
}

/***************** 共用設定 ******************/
.PC {
  display: none;
}
.mobile {
  display: block;
}
.section {
  position: relative;
}
.center {
  width: 90%;
  margin: 2em auto;
}
.sectionCenter {
  padding-top: 52px;
}
/*.fp-slides,..fp-slidesContainer,.fp-tableCell{
    height: auto !important;
}*/
/*.fp-slide{
	height: 100% !important;
}*/
#section1 .sectionCenter,
#section4 .sectionCenter {
  padding-top: 0px;
}
/*.seasonBlock{
	float: left;
	width: 33.3333%;
}*/
#section1 .fp-slide,
#section1 .fp-slidesContainer {
  height: 360px;
}
#season1Block {
  height: 500px;
}

.title {
  text-align: center;
  height: 83px;
  margin: 0 auto 20px;
}
.title img {
  height: 100%;
}
.scroll {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s linear 0.2s;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: updown;
}
.scrollW {
  background-image: url(../imgs/scroll_w.png);
}
.scrollB {
  background-image: url(../imgs/scroll_b.png);
}
.fp-controlArrow {
  background-color: #000;
}
@keyframes updown {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 10px;
  }
}
.scroll:hover {
  animation-play-state: paused;
}

/*lightBox*/
.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.87);
}
.lg-outer .lg-thumb-item {
  border: 0;
  border-radius: 0;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.lg-outer .lg-thumb-item img {
  padding: 13px 0;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  opacity: 1;
}
.lg-toolbar.group {
  background: transparent;
}
.lg-actions .lg-next {
  right: 0;
}
.lg-actions .lg-prev {
  left: 0;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
  transform: translate(0px, -50%) scale(0.5);
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.lg-actions .lg-next:before {
  content: url(../imgs/galleryArrow_next.png);
}
.lg-actions .lg-prev:after {
  content: url(../imgs/galleryArrow_prev.png);
}
/*.lg-toolbar .lg-close::after{
	content: url(../imgs/galleryClose.png);
}*/
.lg-thumb-open .lg-img-wrap {
  padding-bottom: 100px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/***************** 單元設定 ******************/
/*開門頁*/
.logoHome {
  position: absolute;
  top: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background-position: center center;
  opacity: 0.3;
  background-image: url(../imgs/mobileBg.png);
}
.logoHome .logoB {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 375px;
  height: 198px;
  margin: auto;
}
.logoHome .logoB img {
  width: 100%;
  opacity: 0;
}
.flexslider {
  position: relative;
  /*top: 53px;*/
  width: 100%;
  height: 100vh;
  border: 0;
  margin: 0;
  overflow: hidden;
}
.flexslider.mobile {
  display: block;
}
.flexslider.mobile {
  display: none;
}
.flexslider ul li {
  background-position: top center;
  background-size: cover;
  height: 100vh;
}
.flexslider.pc .slide1 {
  background-image: url("../imgs/Home/pc/01.jpg");
}
.flexslider.pc .slide2 {
  background-image: url("../imgs/Home/pc/02.jpg");
  /* background-position: center center; */
}
.flexslider.pc .slide3 {
  background-image: url("../imgs/Home/pc/03.jpg");
}
/* .flexslider.pc .slide4 {background-image: url("../imgs/Home/pc/IW2022SS-09-1.jpg");}
	.flexslider.pc .slide5 {background-image: url("../imgs/Home/pc/IW2022SS-11-2.jpg");}
	.flexslider.pc .slide6 {background-image: url("../imgs/Home/pc/IW2022SS-12-1.jpg");}
	.flexslider.pc .slide7 {background-image: url("../imgs/Home/pc/IW2022SS-13-1.jpg");} */
.flex-control-nav {
  bottom: 20px;
  z-index: 999;
}
.flex-direction-nav a {
  overflow: unset;
}

/*影片*/
/*#videoSection{
	position: relative;
	z-index: auto;
	overflow: hidden;
	top: -215px;
}*/
.FSvideo {
  position: relative;
  /* padding-bottom: 75%; 4:3 aspect ratio */
  /* padding-bottom: 56.25%; 16:9 aspect ratio */
  padding-bottom: 100%;
  padding-top: 0; /*height of controls*/
  height: 0;
}
.onTop {
  display: none;
}
.FSvideo a.sound {
  position: absolute;
  z-index: 500;
  opacity: 0.5;
  left: 2%;
  top: 3%;
  width: 36px;
  height: 48px;
  background: no-repeat center;
  background-image: url(../imgs/btn_sound_on.png);
}
.FSvideo a.sound.active {
  background-image: url(../imgs/btn_sound_off.png);
}
.FSvideo a.sound:hover {
  opacity: 1;
}
.FSvideo .fluid-width-video-wrapper {
  position: relative;
}
.FSvideo .fluid-width-video-wrapper::after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
  display: block;
}
.FSvideo .fluid-width-video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
  display: block;
}
.FSvideo .fluid-width-video-wrapper:hover::after {
  content: none;
}
.FSvideo .fluid-width-video-wrapper:hover::before {
  content: none;
}

.FSvideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 70% !important; */
  /* pointer-events: none; */
}
.FSvideo iframe.clicked {
  /* pointer-events: auto; */
}

.FSvideo .flexslider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.FSvideo .flex-viewport {
  height: 100% !important;
}
.FSvideo .flex-direction-nav a {
  color: transparent;
  text-shadow: none;
  width: 40px;
  height: 76px;
  transform: translateY(50%);
  opacity: 1;
}
.FSvideo .flex-direction-nav a:before {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
  /* background-size: 40px 76px; */
  /* background-position: center center; */
  /* font-family: ''; */
  /* background-repeat: no-repeat; */
}
.flex-direction-nav a.flex-next:before {
  /* background-image: url(../imgs/galleryArrow_next.png); */
}
.flex-direction-nav a.flex-prev:before {
  /* background-image: url(../imgs/galleryArrow_prev.png); */
}

/*時裝*/
#section1 {
  height: 255px;
  /*background-image: url(../imgs/bg01.jpg);*/
  /*background-size: cover;*/
  background-repeat: repeat;
  padding-bottom: 6em;
  /*margin-top: -525px;*/
}
/*#player{
	width: 100%;
	height: 500px;
}*/
.center h1 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  margin: 15px auto;
}
.center p {
  font-size: 13px;
  line-height: 18px;
}
ul.infoBlock li {
  width: 100%;
  height: 55px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1px;
  cursor: pointer;
}
ul.infoBlock li img {
  position: relative;
  top: -30px;
  width: 100%;
}
ul.infoBlock li .txtBlock {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0px 0px 0px #666;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.infoBlock li .txtBlock span {
  display: block;
  color: #fff;
  width: 70%;
  font-family: "Calibri", "Noto Sans TC", "Microsoft JhengHei", "sans-serif";
  font-size: 22px;
  line-height: 55px;
  padding-left: 10%;
}
ul.infoBlock li .txtBlock span::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 80%;
  content: url("../imgs/arrow.png");
  border-left: 1px solid #fff;
  margin: 5px auto;
  /*padding-top: 16px;*/
  text-align: center;
  line-height: 45px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
ul.infoBlock li:hover .txtBlock {
  background-color: rgba(0, 0, 0, 0.1);
  text-shadow: 2px 2px 3px #000;
}
ul.infoBlock li:hover .txtBlock span::after {
  width: 0%;
  opacity: 0;
}
.center.season {
  margin: 0.5em auto;
}
.timeLine:last-child {
  text-align: center;
}
.timeLine a.season {
  position: relative;
  font-size: 12px;
  font-family: "Calibri";
  width: 17%;
  text-align: center;
  display: inline-block;
  margin-left: -5%;
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.timeLine a.season span {
  position: absolute;
  width: 56px;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "Noto Sans TC", "Arial", "儷黑 Pro", "LiHei Pro", "微軟正黑體",
    "Microsoft JhengHei", "標楷體", "DFKai-SB", "sans-serif"; /*MAC*/
}
.timeLine a.season:nth-child(1) {
  margin-left: 0;
}
.timeLine a.season:hover {
  opacity: 0.7;
}
.timeLine a.season img {
  margin-top: 5px;
}
.timeLine .line {
  background: url(../imgs/line.png) repeat-x;
  width: 31.5%;
  height: 14px;
  display: inline-block;
  margin-left: -5%;
}
.timeLine .PC.line {
  display: none;
}
.timeLine a.season.active {
  opacity: 1;
}
/*.lg-outer .lg-video-cont{
	height: 100%;
}*/

/*溫慶珠介紹*/
#section2 {
  background-color: #2e2926;
}
#section2 p {
  color: #b8b8b8;
}
#section2 p.zh {
  text-align: justify;
}
.people {
  background-image: url(../imgs/about_bg.jpg);
  background-position: right 20% top 100%;
  background-size: auto 105%;
  width: 100%;
  height: 375px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .people {
    background-position: right 0 top 100%;
  }
}
/*溫慶珠介紹*/
#section2-1 {
  background-color: #2e2926;
}
#section2 p {
  color: #b8b8b8;
}
#section2 p.zh {
  text-align: justify;
}
/* .people{
	background-image: url(../imgs/news_bg.jpg);
	background-position: right 20% top 100%;
	background-size: auto 105%;
	width: 100%;
	height: 375px;
} */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .people {
    background-position: right 0 top 100%;
  }
}
/*店鋪*/
#section3 {
  /*background-image: url(../imgs/bg01.jpg);*/
  /*background-size: cover;*/
  background-repeat: repeat;
  /* padding-bottom: 6em; */
}
.ui.accordion .title:not(.ui) {
  position: relative;
  height: auto;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "sans-serif";
  font-size: 15px;
  letter-spacing: 2px;
  margin: 1px 0 0 0;
  padding: 0.7em 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui.accordion .title:hover {
  background-color: rgba(0, 0, 0, 1);
}
.ui.accordion .title.active:not(.ui) {
  background-color: rgba(0, 0, 0, 1);
}
.ui.accordion .title::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 70%;
  content: url("../imgs/open.png");
  border-left: 1px solid #fff;
  margin: 5px auto;
  padding-top: 3px;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui.accordion .title.active::after {
  width: 0%;
  opacity: 0;
}
.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui),
.ui.accordion:not(.styled) .title ~ .content:not(.ui) {
  padding: 0 0 0.5em 0;
}
.store_Img {
  position: relative;
  width: 100%;
  height: 220px;
}
.storeSliderBg {
  position: absolute;
  z-index: 900;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/storeBg.png);
  background-size: 100% 100%;
}
.storeSlider {
  position: relative;
  border: 0;
  margin: 0;
  overflow: hidden;
}
.storeSlider ul li {
  background-position: center center;
  background-size: cover;
  height: 220px;
}
.flex-control-nav {
  bottom: 20px;
  z-index: 999;
}
.storeInfo {
  margin-bottom: 2em;
}
.storeInfo h2 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0.5em 0;
}
.storeInfo p {
  font-size: 14px;
  min-height: 25px;
  padding-left: 2em;
  padding-top: 2px;
  margin: 0 0 0 0;
}
.storeInfo p.add {
  background: url(../imgs/icon_map.svg) left top 2px no-repeat;
}
.storeInfo p.time {
  background: url(../imgs/icon_time.svg) left top 2px no-repeat;
}
.storeInfo p.tel {
  background: url(../imgs/icon_tel.svg) left top 2px no-repeat;
}
.storeInfo p.fb {
  background: url(../imgs/icon_fbGray.svg) left top 2px no-repeat;
}
.storeInfo p a:hover {
  opacity: 0.7;
}
.storeSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*FIFI*/
#section4 {
  /*background-image: url(../imgs/bg02FIFI.jpg);*/
  background-size: 200% auto;
  background-repeat: repeat;
  padding-bottom: 6em;
  background-position: left top 130px;
}

ul.infoBlock.FIFI li img {
  top: -60px;
}
#section4 ul.infoBlock li.active .txtBlock {
  background-color: rgba(0, 0, 0, 0.1);
  text-shadow: 2px 2px 3px #000;
}
ul.infoBlock li.active .txtBlock span::after {
  width: 0;
  opacity: 0;
}
span.icon {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  padding: 1em 0;
}
span.icon a:hover {
  opacity: 0.7;
}
span.fb a:before {
  content: url(../imgs/icon_fbGray.svg);
  vertical-align: sub;
  margin-right: 5px;
}
.FIFIstore li {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
}
li.tel:before {
  content: url(../imgs/icon_tel.svg);
  vertical-align: sub;
  margin-right: 5px;
}
li.map,
li.time {
  text-indent: -1.8em;
  margin-left: 1.8em;
}
li.map:before {
  content: url(../imgs/icon_map.svg);
  vertical-align: sub;
  margin-right: 5px;
}
li.time:before {
  content: url(../imgs/icon_time.svg);
  vertical-align: sub;
  margin-right: 5px;
}
.FIFIBg {
  position: absolute;
  background-image: url(../imgs/FiFiBg.png);
  background-size: 100%;
  z-index: -1;
}
.FIFI {
  margin-bottom: 0;
  text-align: justify;
}
#FF01 {
  top: 235px;
  width: 135px;
  height: 135px;
}
#FF02 {
  right: 0;
  bottom: 80px;
  width: 135px;
  height: 135px;
}
.back {
  font-size: 16px;
  cursor: pointer;
  /*overflow: auto;*/
  /*text-align: right;*/
  float: right;
  margin-bottom: 1em;
  display: none;
  transition: all 0.3s ease;
}
.back .btnBack {
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 37px;
  height: 37px;
  /*padding: 5px;*/
  border-radius: 80px;
  /*border: 1px solid #000;*/
  color: #000;
  vertical-align: middle;
  font-size: 25px;
  line-height: 22px;
  background: url(../imgs/btnBack.png) 0 0;
  background-size: 37px auto;
}
.back:hover {
  letter-spacing: 1.5px;
}
.back:hover .btnBack {
  background: url(../imgs/btnBack.png) 0 37px;
  background-size: 37px auto;
}
#section4 .PCcenter {
  margin: 1em auto;
}

/*雜誌*/
#section5 {
  /*background-image: url(../imgs/bg01.jpg);*/
  /*background-size: cover;*/
  background-repeat: repeat;
  padding-bottom: 5em;
}
#section5 .title {
  height: 75px;
}
#section5 .center {
  margin-top: 0;
  padding-top: 2em;
}
#section5 .fp-slidesContainer {
  height: 400px;
}
.IWcover {
  margin: 0 auto 2.5em;
  width: 55%;
}
.IWcover img {
  width: 100%;
}
.zoom-icon {
  top: 90px;
}

/*top*/
.btnTop {
  display: none;
  position: fixed;
  z-index: 1038;
  bottom: 37px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btnTop:hover {
  bottom: 42px;
}
.lg-outer .lg-video {
  /*padding-bottom: 65.25%;*/
}

/**************************************************************************
 三. RWD設定
***************************************************************************/
/*手機版過渡期*/
@media screen and (min-width: 320px) and (max-width: 374px) {
  /*開門頁*/
  .logoHome .logoB {
    width: 320px;
  }
  /*店鋪*/
  .title {
    height: 77px;
  }
  #section5 .title {
    height: 65px;
  }
}
/*手機版過渡期*/
@media screen and (min-width: 500px) and (max-width: 767px) {
  /*開門頁*/
  .logoHome .logoB {
    width: 400px;
  }
  /*時裝*/
  ul.infoBlock li .txtBlock span::after {
    width: 10%;
  }
  ul.infoBlock li img {
    top: -50px;
  }
  /*關於*/
  .people {
    background-size: auto 115%;
  }
  /*雜誌*/
  .IWcover {
    width: 45%;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  /*關於*/
  .people {
    background-size: auto 150%;
    background-position: right 20% top 35%;
  }
}

/*************************  PC版  ****************************/

@media screen and (min-width: 768px) {
  .title img {
    height: auto;
  }
  #section1 .fp-slide,
  #section1 .fp-slidesContainer {
    height: 610px;
  }
  .sectionCenter {
    padding-top: 0;
  }
  /*開門頁*/
  .logoHome .logoB img {
    opacity: 1;
  }
  .logoHome {
    opacity: 1;
    /* position: relative; */
    /* background-size: cover; */
    background-image: none;
  }
  .logoHome::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.2;
    background-size: cover;
    background-image: url(../imgs/PCBg.png);
  }
  .logoHome .logoB {
    width: 820px;
    height: 160px;
  }
  #header {
    height: 0px;
    background-color: transparent;
    z-index: 1040;
  }
  .float-panel .logo {
    float: left;
    opacity: 0;
    margin-left: 20px;
    transition: all 0.3s ease 0.1s;
    display: none;
  }
  .fixed .logo {
    /*opacity: 1;*/
  }
  .float-panel .logo:hover {
    /*opacity: 0.8;*/
  }
  /* .flexslider .slide1 {background-image: url("../imgs/home01.jpg");background-position: top center;} */
  #hamburger {
    right: 27px;
    top: 26px;
  }
  #hamburger::before {
    content: "";
    position: absolute;
    top: -93%;
    left: -80%;
    width: 45px;
    height: 45px;
    border: 1px #fff solid;
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.3);
  }
  #hamburger::after {
    content: "MENU";
    position: absolute;
    bottom: -30px;
    left: -7px;
    color: #fff;
    text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.8);
  }
  .menu {
    top: 0;
    left: auto;
    right: 0;
    width: 350px;
  }
  ul.sns {
    width: 275px;
    text-align: left;
  }
  ul.sns li img {
    padding: 2px 1.2em;
  }
  .menu .video {
    width: 275px;
  }
  ul.txtMenu {
    width: 270px;
  }

  /*共同區塊*/
  .PC {
    display: block;
  }
  span.PC {
    display: inline-block;
  }
  .mobile {
    display: none;
  }
  .center {
    margin: 5em auto;
  }
  .title {
    height: 110px;
  }
  .center h1 {
    font-size: 20px;
    line-height: 34px;
  }
  .center p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
  }
  .PCcenter {
    width: 91%;
    margin: 0 auto;
    display: flex;
    font-size: 0;
  }
  .lg-actions .lg-next {
    right: 20px;
  }
  .lg-actions .lg-prev {
    left: 20px;
  }
  .lg-actions .lg-next,
  .lg-actions .lg-prev {
    transform: translate(0px, -50%) scale(1);
  }
  ul.infoBlock li {
    width: 32%;
    height: 173px;
    margin-right: 10px;
    display: inline-block;
  }
  ul.infoBlock.twoBlock {
    width: 100%;
  }
  ul.infoBlock.twoBlock.flex {
    display: flex;
    justify-content: center;
  }
  ul.infoBlock.twoBlock.flex li {
    margin-right: 0;
  }
  ul.infoBlock.twoBlock li {
    width: 48.5%;
  }
  ul.infoBlock li img {
    -webkit-filter: brightness(0.65);
    filter: brightness(0.65);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    top: auto;
    /*width: auto;*/
  }
  ul.infoBlock li.last {
    margin-right: 0;
  }
  ul.infoBlock li .txtBlock {
    background-color: #000;
    height: 44px;
    top: auto;
    bottom: 0;
  }
  ul.infoBlock li .txtBlock span {
    line-height: 44px;
    padding-left: 0;
    text-align: center;
    width: 80%;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  ul.infoBlock li .txtBlock span::after {
    height: 54%;
    padding-top: 10px;
    line-height: 10px;
  }
  ul.infoBlock li:hover .txtBlock span {
    width: 100%;
  }
  ul.infoBlock li:hover img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
  ul.infoBlock li:hover .txtBlock {
    background-color: #000;
    text-shadow: 0;
  }
  .center.season {
    margin: 2.5em auto;
  }
  .fz0 {
    font-size: 0;
  }
  .timeLine {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
  }
  .timeLine .line {
    /*width: 24.5%;*/
  }
  .timeLine .PC.line {
    display: inline-block;
  }
  /*.timeLine:last-child{
		text-align: left;
		width: 30%;
		margin-left: -2.5%;
	}
	.timeLine:last-child .line{
		width: 52%;
	}
	.timeLine:last-child a.season{
		width: 29%;
	}*/
  .timeLine a.season.active {
    font-weight: 500;
  }

  /*影片*/
  #videoSection {
    z-index: -1;
    top: -230px;
  }
  .onTop {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .onTop:hover {
    background-color: rgba(0, 0, 0, 0);
    /*filter: brightness(0.7);*/
  }
  .FSvideo .flex-direction-nav a {
    width: 40px;
    height: 40px;
  }
  .FSvideo .flex-direction-nav a:before {
    font-size: 40px;
  }
  .FSvideo .flex-direction-nav .flex-next {
    right: 50px;
  }
  .FSvideo .flex-direction-nav .flex-prev {
    left: 50px;
  }
  .FSvideo .fluid-width-video-wrapper::before {
    content: none;
  }
  .FSvideo .fluid-width-video-wrapper:hover::after {
    content: "";
  }
  .FSvideo .fluid-width-video-wrapper:hover::before {
    content: "";
  }
  /*時裝*/
  #section1 {
    /*margin-top: -500px*/
  }
  .FSvideo {
    /* height: 480px; */
    /*padding-bottom: 0;*/
    padding-bottom: 100vh;
  }
  .FSvideo .fluid-width-video-wrapper {
    padding-top: 100vh !important;
  }

  /*溫慶祝介紹*/
  #section2 {
    background-image: url("../imgs/about_bg.jpg");
    background-position: center right 36%;
    background-size: auto 105%;
    height: 100vh;
  }
  #section2 p {
    color: #fefefe;
    font-size: 14px;
    font-weight: 100;
    line-height: 18px;
    width: 70%;
  }
  #section2 .center {
    margin-bottom: 10em;
  }

  /*店鋪介紹*/
  #section3 .center {
    margin-bottom: 1em;
  }
  .storeSlider ul li {
    height: 470px;
  }
  .store_Img {
    height: 470px;
  }
  .storeInfo {
    width: 24%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5em;
    margin-right: 5px;
  }
  .storeInfo h2 {
    height: 44px;
    line-height: 24px;
    word-break: keep-all;
  }
  #section3 .center p {
    font-size: 14px;
    line-height: 20px;
  }
  .ui.accordion .title::after {
    width: 45px;
  }

  /*FIFI*/
  #section4 {
    /*background-position: left top 455px;*/
    background-position: left top 85px;
  }
  .infoBlock.FIFI {
    margin-bottom: 2em;
  }
  #section4 ul.infoBlock li {
    width: 31.9%;
    height: 139px;
  }
  #section4 ul.infoBlock li.active .txtBlock {
    background-color: #000;
    text-shadow: 0;
  }
  ul.infoBlock.FIFI li img {
    top: 0;
    width: 100%;
  }
  ul.infoBlock.FIFI li.active img {
    filter: brightness(1);
  }
  ul.infoBlock li.active .txtBlock span {
    width: 100%;
  }
  ul.infoBlock li.active .txtBlock span::after {
    width: 0;
    opacity: 0;
  }
  #FF01 {
    top: 334px;
    width: 305px;
    height: 305px;
  }
  #FF02 {
    bottom: 180px;
  }
  span.fb {
    padding: 0;
  }
  .back .btnBack {
    line-height: 16px;
  }

  /*IW*/
  #section5 {
    /*background-size: cover;*/
    background-position-y: bottom;
  }
  #section5 .fp-slidesContainer {
    height: 325px;
  }
  #section5 .title {
    height: 112px;
  }
  .IWcover {
    width: 38%;
    margin: 0 5px 0 0;
    vertical-align: top;
  }
  #section5 ul.infoBlock {
    width: 61%;
    display: inline-block;
    vertical-align: top;
  }
  #section5 ul.infoBlock li {
    width: 48.5%;
    height: 50%;
    margin-right: 5px;
  }
  #section5 ul.infoBlock li .txtBlock span {
    font-size: 16px;
  }
  #section5 ul.infoBlock li:nth-child(-n + 2) {
    margin-bottom: 5px;
  }
  #section5 .timeLine:last-child {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }
  #section5 .timeLine a.season {
    width: 7%;
    margin-left: -2%;
  }
  #section5 .timeLine .line {
    width: 42.6%;
    margin-left: -2%;
  }
  /*footer*/
  #section6 {
    background-size: cover;
  }
  .bottom h5 {
    display: inline-block;
    margin-right: 10px;
  }
}
@media screen and (max-width: 821px) {
  .flexslider.pc {
    display: none;
  }
  .flexslider.mobile {
    display: block;
  }
  .flexslider.mobile .slide1 {
    background-image: url("../imgs/Home/mobile/01.jpg");
  }
  .flexslider.mobile .slide2 {
    background-image: url("../imgs/Home/mobile/02.jpg");
  }
  .flexslider.mobile .slide3 {
    background-image: url("../imgs/Home/mobile/03.jpg");
  }
  /* .flexslider.mobile .slide4 {background-image: url("../imgs/Home/mobile/IW2022SS-07-1.jpg");}
	.flexslider.mobile .slide8 {background-image: url("../imgs/Home/mobile/IW2022SS-12-2.jpg");}
	.flexslider.mobile .slide9 {background-image: url("../imgs/Home/mobile/IW2022SS-14.jpg");} */
}
@media screen and (max-width: 767px) {
  .flexslider {
    height: calc(100vh - 52px);
  }
}
@media screen and (min-width: 1000px) {
  #section1 .fp-slide,
  #section1 .fp-slidesContainer {
    height: 690px;
  }
  /*FS 共同區塊*/
  .title {
    margin: 0 auto 30px;
  }
  .center,
  .PCcenter {
    width: 850px;
  }
  ul.infoBlock {
    width: 100%;
  }
  ul.infoBlock li {
    height: 200px;
  }
  /*.timeLine a.season{
		width: 7%;
		font-size: 14px;
		margin-left: -2%;
	}
	.timeLine .line{
		width: 42.6%;
		margin-left: -2%;
	}*/

  /*溫慶珠介紹*/
  #section2 {
    background-size: cover;
  }
  #section2 .title {
    margin: 0 auto 45px;
  }
  #section2 p {
    width: 57%;
  }

  /*店鋪*/
  #section3 .center {
    width: 1000px;
  }

  /*FIFI*/
  #section4 {
    background-size: 100% auto;
  }
  #section4 .PCcenter {
    width: 1000px;
  }
  #section4 ul.infoBlock li {
    height: 195px;
    width: 32%;
  }
  #FF01 {
    top: 334px;
  }
  #FF02 {
    bottom: 0;
    width: 305px;
    height: 305px;
  }

  /*IW*/
  #section5 .PCcenter {
    width: 876px;
  }
  #section5 .fp-slidesContainer {
    height: 400px;
  }
  #section5 ul.infoBlock {
    height: 394px;
  }
}

/*大螢幕限定*/
@media screen and (min-width: 1900px) {
  /*溫慶珠介紹*/
  #section2 .center {
    margin-bottom: 15em;
    margin-top: 7em;
  }
  #section2 .title {
    margin: 0 auto 95px;
  }
  /*FIFI*/
  #FF01 {
    top: 440px;
    width: 270px;
    height: 270px;
  }
}
@media screen and (max-width: 450px) {
  ul.infoBlock li img {
    top: -65px;
  }
}
/* 0530 */
@media screen and (min-width: 768px) {
  ul.infoBlock a.selectorNO li img {
    top: -18px;
  }
  ul.infoBlock a.selectorNO li {
    cursor: default;
  }
}
/* VIP */
.vip-title{
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 3rem;
  img{
    width: 80%;
    max-width: 350px;
  }
}
.vip-h1{
  font-size: 1.25rem !important;
  margin-bottom: 3rem !important;

  @media screen and (min-width: 1000px) {
    .none-lg{
      display: none;
    }
  }
}
.vip-h3{
  font-weight: normal;
  font-size: 1rem;
  padding-left: 2rem;
  
  @media screen and (min-width: 1000px) {
    font-size: 1.25rem;
    padding-left: 0;
  }
}

ul.list-decimal{
  font-size: .875rem;
  line-height: 1.75rem;
  padding-left: 1rem;
  margin-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 2rem;

  @media screen and (min-width: 1000px) {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.875rem;
    padding-left: 1rem;
    padding-right: 0;
}
  li {
    list-style-type: decimal;
  }
}