@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@400;500;700&family=Varela+Round&display=swap");
* {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
li {
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  list-style: none;
}

@keyframes twinkle {
  0% {
    opacity: 0 0.8;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes twinkle {
  0% {
    opacity: 0 0.8;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@-webkit-keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes wiggle {
  0%, 10%, 20%, 30%, 40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40%, 50%, 60%, 70%, 80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  45%, 55%, 65%, 75%, 85% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  85%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes wiggle {
  0%, 10%, 20%, 30%, 40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  40%, 50%, 60%, 70%, 80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  45%, 55%, 65%, 75%, 85% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  85%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes flybird {
  0% {
    left: -20vw;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(0);
            filter: blur(0); /* 初始時不模糊 */
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  7% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  13% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  20% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  24% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  33% {
    left: 50vw;
    top: -5vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
  100% {
    left: 50vw;
    top: -5vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
}
@-webkit-keyframes flybird {
  0% {
    left: -20vw;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(0);
            filter: blur(0); /* 初始時不模糊 */
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  7% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  13% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  20% {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  24% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  33% {
    left: 50vw;
    top: -5vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
  100% {
    left: 50vw;
    top: -5vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
}
@keyframes flybird02 {
  0% {
    left: -20vw;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(0);
            filter: blur(0); /* 初始時不模糊 */
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  33% {
    left: 20vw;
    top: 3vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
  100% {
    left: 20vw;
    top: 3vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
}
@-webkit-keyframes flybird02 {
  0% {
    left: -20vw;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(0);
            filter: blur(0); /* 初始時不模糊 */
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  33% {
    left: 20vw;
    top: 3vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
  100% {
    left: 20vw;
    top: 3vh;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
    -webkit-filter: blur(5px);
            filter: blur(5px); /* 中途模糊 */
  }
}
/**** VARIABLES ****/
@media (max-width: 820px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  html {
    font-size: 14px;
  }
}

html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  font-weight: 500;
  color: #e69638;
  font-family: "Noto Sans HK", sans-serif;
  line-height: 1.3;
  overflow-x: hidden;
}

p {
  color: #805d68;
  font-size: 1.1rem;
}

.wrap {
  max-width: 2560px;
  margin: 0 auto;
  position: relative;
}
.wrap .gotop {
  position: fixed;
  z-index: 10;
  right: 8%;
  bottom: 6%;
}
@media (max-width: 1024px) {
  .wrap .gotop {
    bottom: 20%;
  }
}
@media (max-width: 820px) {
  .wrap .gotop {
    right: 7%;
    bottom: 25%;
  }
}
@media (max-width: 576px) {
  .wrap .gotop {
    bottom: 10%;
  }
}
.wrap .gotop img {
  position: relative;
}
@media (max-width: 1024px) {
  .wrap .gotop img {
    display: none;
  }
}
.wrap .gotop p {
  position: absolute;
  color: white;
  font-size: 1.5rem;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  left: 50%;
  bottom: -10%;
  z-index: 3;
  padding: 0.3rem 1.5rem;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid white;
  background-color: rgba(128, 93, 104, 0.8);
}
@media (max-width: 820px) {
  .wrap .gotop p {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .wrap .gotop p {
    font-size: 1.2rem;
  }
}
.wrap h2 {
  padding-bottom: 3%;
  margin: 0;
}
.wrap .shadow {
  width: 5rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(127, 148, 184, 0.5);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 0.5vw rgb(130, 139, 156);
          box-shadow: 0 0 0.5vw rgb(130, 139, 156);
  -webkit-animation: scale infinite 3s;
          animation: scale infinite 3s;
}
.wrap .but {
  display: block;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 5;
}
@media (max-width: 480px) {
  .wrap .but {
    width: 50%;
  }
}
.wrap .but:hover {
  scale: 1.1;
}
.wrap .contentBg {
  position: relative;
  background-color: #eae3d0;
  border-radius: 1em;
  border: #bbb198 2px solid;
  -webkit-box-shadow: 0.7vw 0.7vw 0 #eae3d0, -0.7vw 0.7vw 0 #eae3d0, 0 0.7vw 0 #eae3d0, 0.7vw -0.7vw 0 #eae3d0, -0.7vw -0.7vw 0 #eae3d0;
          box-shadow: 0.7vw 0.7vw 0 #eae3d0, -0.7vw 0.7vw 0 #eae3d0, 0 0.7vw 0 #eae3d0, 0.7vw -0.7vw 0 #eae3d0, -0.7vw -0.7vw 0 #eae3d0;
  margin-bottom: 5%;
  padding: 1% 1% 2% 1%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 5;
}
@media (max-width: 1024px) {
  .wrap .contentBg {
    width: 90%;
  }
}
.wrap .contentBg .circle {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #bbb198;
  border-radius: 50%;
  bottom: 0.5%;
}
.wrap .contentBg .circle:first-child {
  right: 1%;
}
.wrap .contentBg .inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.wrap .contentBg .inner .content {
  background: url("../img/innerRepeat.png") repeat-y;
  background-size: contain;
  width: 1028px;
  max-width: 100%;
  color: #b67222;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1px;
  padding: 2% 21% 0% 21%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 750px) {
  .wrap .contentBg .inner .content {
    padding: 10% 7% 5% 7%;
  }
}
@media (max-width: 576px) {
  .wrap .contentBg .inner .content {
    padding: 3% 7% 5% 7%;
  }
}
.wrap .kvZone {
  background: url("../img/kvBg.jpg") no-repeat center bottom;
  background-size: cover;
  width: 100%;
  height: auto;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 750px) {
  .wrap .kvZone {
    background: url("../img/M-kvBg.jpg") no-repeat bottom center;
    background-size: cover;
    height: 150vw;
  }
}
.wrap .kvZone .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 8%;
}
@media (max-width: 576px) {
  .wrap .kvZone .title {
    top: 0;
  }
}
.wrap .kvZone .title h1 {
  position: absolute;
  height: 10%;
  left: 24%;
  top: 9%;
  z-index: 5;
}
.wrap .kvZone .title h1 a {
  display: block;
  background: url("../img/RomLogo.png") no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  margin-right: 1vw;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
}
.wrap .kvZone .title img {
  position: relative;
}
.wrap .kvZone .title .spark01 {
  position: absolute;
  top: 26%;
  left: 10%;
  -webkit-animation: twinkle 0.7s infinite;
          animation: twinkle 0.7s infinite;
}
.wrap .kvZone .title .spark02 {
  width: 30px;
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-animation: twinkle 0.9s infinite;
          animation: twinkle 0.9s infinite;
}
.wrap .kvZone .fly {
  z-index: 1;
  position: absolute;
  left: -20vw;
  top: 10%;
  -webkit-animation: flybird 21s infinite;
          animation: flybird 21s infinite;
}
@media (max-width: 576px) {
  .wrap .kvZone .fly {
    width: 20%;
  }
}
.wrap .kvZone .fly02 {
  z-index: 1;
  position: absolute;
  left: -20vw;
  top: 10%;
  -webkit-animation: flybird02 24s infinite;
          animation: flybird02 24s infinite;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.wrap .eventZone {
  background: url("../img/bgDeco.png") #f8f7f4;
  background-size: 158px 158px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10%;
  position: relative;
}
@media (max-width: 576px) {
  .wrap .eventZone .hongkongTitle {
    width: 80%;
  }
}
.wrap .eventZone .seal {
  position: absolute;
  top: 10%;
  right: 7%;
  -webkit-animation: wiggle 5s infinite alternate;
          animation: wiggle 5s infinite alternate;
  z-index: 2;
}
@media (max-width: 820px) {
  .wrap .eventZone .seal {
    top: 0;
    right: 0;
    width: 20%;
  }
}
@media (max-width: 750px) {
  .wrap .eventZone .seal {
    width: 20%;
  }
}
@media (max-width: 576px) {
  .wrap .eventZone .seal {
    top: 5%;
  }
}
.wrap .eventZone .timeEvent {
  margin-bottom: 3%;
  width: 800px;
  max-width: 100%;
}
.wrap .eventZone .timeEvent li {
  color: #805d68;
  margin-bottom: 3%;
  border: 2px solid #a38790;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px 0;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap .eventZone .timeEvent li h3 {
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  position: relative;
  color: white;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #a38790;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px 0 0 0;
}
.wrap .eventZone .timeEvent li h3 img {
  border-radius: 15px 0 0 0;
}
.wrap .eventZone .timeEvent li h3 span {
  position: absolute;
  color: white;
  font-size: 1.5rem;
}
@media (max-width: 820px) {
  .wrap .eventZone .timeEvent li h3 span {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .wrap .eventZone .timeEvent li h3 span {
    font-size: 16px;
  }
}
.wrap .eventZone .timeEvent li p {
  -webkit-box-flex: 0.7;
      -ms-flex: 0.7;
          flex: 0.7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  text-align: left;
  border-radius: 0 0 15px 0;
  border: 1px solid #d0b7bf;
  padding: 0 0 0 20px;
}
@media (max-width: 480px) {
  .wrap .eventZone .timeEvent li p {
    font-size: 17px;
    padding: 4px 4px 4px 20px;
  }
}
.wrap .eventZone .timeEvent li span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #e69638;
  text-align: left;
}
@media (max-width: 480px) {
  .wrap .eventZone .timeEvent li span {
    font-size: 14px;
  }
}
.wrap .eventZone .sign {
  /* Sweep To Right */
}
.wrap .eventZone .sign p {
  display: inline-block;
  color: #fe698a;
  border-bottom: 1px solid #fe698a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrap .eventZone .sign a {
  display: inline-block;
  margin: 0.4em;
  padding: 1em 1em 0.5em 1em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  border: 2px solid #fe698a;
  border-radius: 10px;
  color: #fe698a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 480px) {
  .wrap .eventZone .sign a {
    margin: 0.2em;
    padding: 0.5em 0.7em 0.5em 0.7em;
  }
}
.wrap .eventZone .sign .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.wrap .eventZone .sign .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffa7ba;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.wrap .eventZone .sign .hvr-sweep-to-right:hover, .wrap .eventZone .sign .hvr-sweep-to-right:focus, .wrap .eventZone .sign .hvr-sweep-to-right:active {
  color: white;
}
.wrap .eventZone .sign .hvr-sweep-to-right:hover:before, .wrap .eventZone .sign .hvr-sweep-to-right:focus:before,
.wrap .eventZone .sign .hvr-sweep-to-right .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.wrap .eventZone .sign .signOut a {
  padding: 0.7em 1em 0.8em 1em;
}
.wrap .eventZone .content .but {
  margin-top: 5%;
}
.wrap .eventZone .eventCh01 {
  position: absolute;
  z-index: 1;
  top: -11%;
  left: -26%;
  -webkit-animation: bounce infinite 3s;
          animation: bounce infinite 3s;
}
@media (max-width: 1600px) {
  .wrap .eventZone .eventCh01 {
    width: 32%;
    left: 0;
  }
}
@media (max-width: 750px) {
  .wrap .eventZone .eventCh01 {
    display: none;
  }
}
.wrap .eventZone .eventCh02 {
  position: absolute;
  z-index: 1;
  bottom: 10%;
  right: 8%;
}
@media (max-width: 1600px) {
  .wrap .eventZone .eventCh02 {
    display: none;
  }
}
.wrap .eventZone .eventCh02 img {
  -webkit-animation: bounce infinite 3s;
          animation: bounce infinite 3s;
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 1600px) {
  .wrap .eventZone .eventCh02 img {
    width: 74%;
  }
}
.wrap .eventZone .eventZoneDeco01 {
  position: absolute;
  right: 0;
}
.wrap .eventZone .eventZoneDeco02 {
  position: absolute;
  left: 0;
  top: 40%;
}
.wrap .infoZone {
  background: url("../img/infoBg.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: auto;
  max-width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10%;
}
.wrap .infoZone .tab {
  margin: 0 auto;
  background: url("../img/toggleBut.png") no-repeat;
  background-size: contain;
  width: 674px;
  max-width: 100%;
}
.wrap .infoZone .tab img {
  cursor: pointer;
}
.wrap .infoZone .tab .tab_b {
  display: none;
}
.wrap .infoZone .tab.active img.tab_a {
  display: none;
}
.wrap .infoZone .tab.active img.tab_b {
  display: block;
}
.wrap .infoZone .inner .content {
  padding: 0;
}
@media (max-width: 820px) {
  .wrap .infoZone .inner .content {
    padding: 10% 7% 5% 7%;
  }
}
.wrap .infoZone .inner ul {
  max-width: 800px;
  width: 100%;
}
.wrap .infoZone .inner ul li {
  margin-bottom: 3%;
}
.wrap .infoZone .inner h2 img {
  margin: 0 auto;
}
.wrap .infoZone .inner h4 {
  padding: 3% 0;
}
.wrap .infoZone .inner .tab_contenta ul {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap .infoZone .inner .tab_contenta ul li {
  max-width: 335px;
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 820px) {
  .wrap .infoZone .inner .tab_contenta ul li {
    padding: 1%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.wrap .infoZone .inner .tab_contenta ul li img {
  border-radius: 12px 12px 0 0;
  border: #eeeeee 7px solid;
  border-bottom: 0;
  -webkit-box-shadow: 1px 0 0 #d8ccad, -1px 0 0 #d8ccad, 0 0 0 #d8ccad, 0 -1px 0 #d8ccad;
          box-shadow: 1px 0 0 #d8ccad, -1px 0 0 #d8ccad, 0 0 0 #d8ccad, 0 -1px 0 #d8ccad;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrap .infoZone .inner .tab_contenta ul li div {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 0 0 12px 12px;
  border: #eeeeee 7px solid;
  border-top: 0;
  -webkit-box-shadow: 1px 0 0 #d8ccad, -1px 0 0 #d8ccad, 0 1px 0 #d8ccad, 0 0 0 #d8ccad;
          box-shadow: 1px 0 0 #d8ccad, -1px 0 0 #d8ccad, 0 1px 0 #d8ccad, 0 0 0 #d8ccad;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3% 0;
  margin-top: -3%;
  background-color: white;
}
.wrap .infoZone .inner .tab_contenta ul li div h4 img {
  width: 220px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .wrap .infoZone .inner .tab_contenta ul li div h4 img {
    width: 180px;
  }
}
.wrap .infoZone .inner .tab_contenta ul li div p {
  padding: 0 10%;
  font-weight: 500;
}
.wrap .infoZone .inner .tab_contentb {
  display: none;
}
.wrap .infoZone .inner .tab_contentb ul {
  max-width: 650px;
}
.wrap .infoZone .inner .tab_contentb ul li {
  margin: 0 auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5%;
  border-radius: 12px;
  border: #eeeeee 7px solid;
  -webkit-box-shadow: 1px 0 0 #d8ccad, 0 0 0 #d8ccad, 0 1px 0 #d8ccad, 0 -1px 0 #d8ccad;
          box-shadow: 1px 0 0 #d8ccad, 0 0 0 #d8ccad, 0 1px 0 #d8ccad, 0 -1px 0 #d8ccad;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2%;
}
@media (max-width: 750px) {
  .wrap .infoZone .inner .tab_contentb ul li {
    display: block;
    padding-right: 0;
    max-width: 422px;
  }
}
.wrap .infoZone .inner .tab_contentb ul li img {
  margin-right: 2%;
}
@media (max-width: 576px) {
  .wrap .infoZone .inner .tab_contentb ul li img {
    margin-right: 0;
  }
}
.wrap .infoZone .inner .tab_contentb ul li h4 {
  margin-right: 0;
}
@media (max-width: 576px) {
  .wrap .infoZone .inner .tab_contentb ul li h4 {
    max-width: 150px;
  }
}
@media (max-width: 750px) {
  .wrap .infoZone .inner .tab_contentb ul li p {
    text-align: center;
    padding: 0 2% 2% 2%;
  }
}
@media (max-width: 750px) {
  .wrap .infoZone .inner .tab_contentb ul li div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.wrap .infoZone .inner .active.tab_contenta {
  display: none;
}
.wrap .infoZone .inner .active.tab_contentb {
  display: block;
}
.wrap .infoZone .infoCh01 {
  position: absolute;
  bottom: 5%;
}
@media (max-width: 2560px) {
  .wrap .infoZone .infoCh01 {
    right: 0;
  }
}
@media (max-width: 1600px) {
  .wrap .infoZone .infoCh01 {
    display: none;
  }
}
.wrap .infoZone .infoCh02 {
  position: absolute;
  left: 5%;
  top: 50%;
}
@media (max-width: 1600px) {
  .wrap .infoZone .infoCh02 {
    display: none;
  }
}
.wrap .infoZone .infoCh02 img {
  -webkit-animation: bounce infinite 3s;
          animation: bounce infinite 3s;
  position: relative;
  margin-bottom: 2rem;
}
.wrap .noteZone {
  background: url("../img/bgDeco.png") #f8f7f4;
  background-size: cover;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 5%;
  position: relative;
}
.wrap .noteZone .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3%;
  z-index: 5;
}
@media (max-width: 1024px) {
  .wrap .noteZone .inner {
    width: 90%;
  }
}
.wrap .noteZone .inner .content {
  background: url("../img/innerRepeat.png") repeat-y;
  background-size: contain;
  color: #b67222;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1px;
}
@media (max-width: 1024px) {
  .wrap .noteZone .inner .content {
    padding: 0 10%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.wrap .noteZone .inner .content ul {
  max-width: 750px;
  margin-bottom: 2%;
  font-size: 1.1rem;
}
@media (max-width: 820px) {
  .wrap .noteZone .inner .content ul {
    padding: 0 15%;
  }
}
@media (max-width: 576px) {
  .wrap .noteZone .inner .content ul {
    padding: 0 2%;
  }
}
.wrap .noteZone .inner .content ul li {
  text-align: left;
  margin-bottom: 2%;
}
.wrap .noteZone .inner .content ul li::before {
  content: "";
  background: url("../img/check.png") no-repeat center;
  background-size: cover;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 1%;
}
.wrap .noteZone .inner .noteZoneCh01 {
  position: absolute;
  right: 5%;
  top: 0;
}
@media (max-width: 820px) {
  .wrap .noteZone .inner .noteZoneCh01 {
    right: 0;
    top: -2%;
  }
}
@media (max-width: 820px) and (max-width: 820px) {
  .wrap .noteZone .inner .noteZoneCh01 {
    display: none;
  }
}
.wrap .noteZone .noteZoneCh02 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .wrap .noteZone .noteZoneCh02 {
    display: none;
  }
}
.wrap .noteZone .noteDeco01 {
  position: absolute;
  left: 15%;
  top: 20%;
}
.wrap .noteZone .noteDeco02 {
  position: absolute;
  right: 2%;
  bottom: 0;
}

footer {
  background-color: black;
}