@charset "UTF-8";
/* color */
/* font weight */
/*thin*/
/*light*/
/*ragular*/
/*medium*/
/*bold*/
/*black*/
/* letter spacing */
/* font family */
/* grid */
/* tag */
/*------------------------------------*\
 $WIDTH
\*------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;300;400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 漸層背景 */
/*font color */
.fontWhite {
  color: #fff;
}

.fontPink {
  color: #e58e8c;
}

.fontBk {
  color: black;
}

/* backgroung color */
.bgWhite {
  background: #fff;
}

.bgLightPink {
  background: #ffd3f2;
}

.bgBlack {
  background: #000;
}

.bgPrimary {
  background: #828c7f;
}

.bgBlue {
  background-color: #7a9cff;
}

/* font weight */
.fontThin {
  font-weight: 100 !important;
}

.fontLight {
  font-weight: 300 !important;
}

.fontRegular {
  font-weight: 400 !important;
}

.fontMedium {
  font-weight: 500 !important;
}

.fontBold {
  font-weight: 700 !important;
}

.fontBlack {
  font-weight: 900 !important;
}

/* font style*/
.italic {
  font-style: italic;
}

/* image center */
.widthCenter {
  margin: 0 auto;
}

/* text align */
.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* cursor */
.pointer {
  cursor: pointer;
}

/* display */
.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

/* flex */
.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

/* clearfix */
.clearfix {
  overflow: auto;
}

/* RWD */
/* show or hide */
.showPad {
  display: none !important;
}
@media (max-width: 960x) {
  .showPad {
    display: block !important;
  }
}

.hidePad {
  display: block !important;
}
@media (max-width: 960x) {
  .hidePad {
    display: none !important;
  }
}

@media (max-width: 960x) {
  .hidePad_twotop {
    display: none !important;
  }
}

.showMobile {
  display: none !important;
}
@media (max-width: 576px) {
  .showMobile {
    display: block !important;
  }
}

.hideMobile {
  display: block !important;
}
@media (max-width: 576px) {
  .hideMobile {
    display: none !important;
  }
}

/* text width */
@media (max-width: 960x) {
  .txtWidth {
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .txtWidth {
    width: 80%;
  }
}

.m-0 {
  margin: 0px;
}

.m-1 {
  margin: 5px;
}

.m-2 {
  margin: 10px;
}

.m-3 {
  margin: 20px;
}

.m-4 {
  margin: 30px;
}

.m-5 {
  margin: 60px;
}

.m-6 {
  margin: 80px;
}

.m-7 {
  margin: 100px;
}

.m-8 {
  margin: 120px;
}

.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 20px;
}

.mt-4 {
  margin-top: 30px;
}

.mt-5 {
  margin-top: 60px;
}

.mt-6 {
  margin-top: 80px;
}

.mt-7 {
  margin-top: 100px;
}

.mt-8 {
  margin-top: 120px;
}

.mt-auto {
  margin-top: auto;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 60px;
}

.mb-6 {
  margin-bottom: 80px;
}

.mb-7 {
  margin-bottom: 100px;
}

.mb-8 {
  margin-bottom: 120px;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 5px;
}

.ml-2 {
  margin-left: 10px;
}

.ml-3 {
  margin-left: 20px;
}

.ml-4 {
  margin-left: 30px;
}

.ml-5 {
  margin-left: 60px;
}

.ml-6 {
  margin-left: 80px;
}

.ml-7 {
  margin-left: 100px;
}

.ml-8 {
  margin-left: 120px;
}

.ml-auto {
  margin-left: auto;
}

.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 5px;
}

.mr-2 {
  margin-right: 10px;
}

.mr-3 {
  margin-right: 20px;
}

.mr-4 {
  margin-right: 30px;
}

.mr-5 {
  margin-right: 60px;
}

.mr-6 {
  margin-right: 80px;
}

.mr-7 {
  margin-right: 100px;
}

.mr-8 {
  margin-right: 120px;
}

.mr-auto {
  margin-right: auto;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mx-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-3 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-4 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-5 {
  margin-left: 60px;
  margin-right: 60px;
}

.mx-6 {
  margin-left: 80px;
  margin-right: 80px;
}

.mx-7 {
  margin-left: 100px;
  margin-right: 100px;
}

.mx-8 {
  margin-left: 120px;
  margin-right: 120px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-4 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-5 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.my-6 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.my-7 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.my-8 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 5px;
}

.p-2 {
  padding: 10px;
}

.p-3 {
  padding: 20px;
}

.p-4 {
  padding: 30px;
}

.p-5 {
  padding: 60px;
}

.p-6 {
  padding: 80px;
}

.p-7 {
  padding: 100px;
}

.p-8 {
  padding: 120px;
}

.p-auto {
  padding: auto;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 5px;
}

.pt-2 {
  padding-top: 10px;
}

.pt-3 {
  padding-top: 20px;
}

.pt-4 {
  padding-top: 30px;
}

.pt-5 {
  padding-top: 60px;
}

.pt-6 {
  padding-top: 80px;
}

.pt-7 {
  padding-top: 100px;
}

.pt-8 {
  padding-top: 120px;
}

.pt-auto {
  padding-top: auto;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 20px;
}

.pb-4 {
  padding-bottom: 30px;
}

.pb-5 {
  padding-bottom: 60px;
}

.pb-6 {
  padding-bottom: 80px;
}

.pb-7 {
  padding-bottom: 100px;
}

.pb-8 {
  padding-bottom: 120px;
}

.pb-auto {
  padding-bottom: auto;
}

.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 5px;
}

.pl-2 {
  padding-left: 10px;
}

.pl-3 {
  padding-left: 20px;
}

.pl-4 {
  padding-left: 30px;
}

.pl-5 {
  padding-left: 60px;
}

.pl-6 {
  padding-left: 80px;
}

.pl-7 {
  padding-left: 100px;
}

.pl-8 {
  padding-left: 120px;
}

.pl-auto {
  padding-left: auto;
}

.pr-0 {
  padding-right: 0px;
}

.pr-1 {
  padding-right: 5px;
}

.pr-2 {
  padding-right: 10px;
}

.pr-3 {
  padding-right: 20px;
}

.pr-4 {
  padding-right: 30px;
}

.pr-5 {
  padding-right: 60px;
}

.pr-6 {
  padding-right: 80px;
}

.pr-7 {
  padding-right: 100px;
}

.pr-8 {
  padding-right: 120px;
}

.pr-auto {
  padding-right: auto;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-3 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-4 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-5 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-6 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-7 {
  padding-left: 100px;
  padding-right: 100px;
}

.px-8 {
  padding-left: 120px;
  padding-right: 120px;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-4 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-6 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-7 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-8 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

@media screen and (min-width: 576px) {
  .m-sm-0 {
    margin: 0px;
  }
  .m-sm-1 {
    margin: 5px;
  }
  .m-sm-2 {
    margin: 10px;
  }
  .m-sm-3 {
    margin: 20px;
  }
  .m-sm-4 {
    margin: 30px;
  }
  .m-sm-5 {
    margin: 60px;
  }
  .m-sm-6 {
    margin: 80px;
  }
  .m-sm-7 {
    margin: 100px;
  }
  .m-sm-8 {
    margin: 120px;
  }
  .m-sm-auto {
    margin: auto;
  }
  .mt-sm-0 {
    margin-top: 0px;
  }
  .mt-sm-1 {
    margin-top: 5px;
  }
  .mt-sm-2 {
    margin-top: 10px;
  }
  .mt-sm-3 {
    margin-top: 20px;
  }
  .mt-sm-4 {
    margin-top: 30px;
  }
  .mt-sm-5 {
    margin-top: 60px;
  }
  .mt-sm-6 {
    margin-top: 80px;
  }
  .mt-sm-7 {
    margin-top: 100px;
  }
  .mt-sm-8 {
    margin-top: 120px;
  }
  .mt-sm-auto {
    margin-top: auto;
  }
  .mb-sm-0 {
    margin-bottom: 0px;
  }
  .mb-sm-1 {
    margin-bottom: 5px;
  }
  .mb-sm-2 {
    margin-bottom: 10px;
  }
  .mb-sm-3 {
    margin-bottom: 20px;
  }
  .mb-sm-4 {
    margin-bottom: 30px;
  }
  .mb-sm-5 {
    margin-bottom: 60px;
  }
  .mb-sm-6 {
    margin-bottom: 80px;
  }
  .mb-sm-7 {
    margin-bottom: 100px;
  }
  .mb-sm-8 {
    margin-bottom: 120px;
  }
  .mb-sm-auto {
    margin-bottom: auto;
  }
  .ml-sm-0 {
    margin-left: 0px;
  }
  .ml-sm-1 {
    margin-left: 5px;
  }
  .ml-sm-2 {
    margin-left: 10px;
  }
  .ml-sm-3 {
    margin-left: 20px;
  }
  .ml-sm-4 {
    margin-left: 30px;
  }
  .ml-sm-5 {
    margin-left: 60px;
  }
  .ml-sm-6 {
    margin-left: 80px;
  }
  .ml-sm-7 {
    margin-left: 100px;
  }
  .ml-sm-8 {
    margin-left: 120px;
  }
  .ml-sm-auto {
    margin-left: auto;
  }
  .mr-sm-0 {
    margin-right: 0px;
  }
  .mr-sm-1 {
    margin-right: 5px;
  }
  .mr-sm-2 {
    margin-right: 10px;
  }
  .mr-sm-3 {
    margin-right: 20px;
  }
  .mr-sm-4 {
    margin-right: 30px;
  }
  .mr-sm-5 {
    margin-right: 60px;
  }
  .mr-sm-6 {
    margin-right: 80px;
  }
  .mr-sm-7 {
    margin-right: 100px;
  }
  .mr-sm-8 {
    margin-right: 120px;
  }
  .mr-sm-auto {
    margin-right: auto;
  }
  .mx-sm-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mx-sm-1 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mx-sm-2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mx-sm-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mx-sm-4 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mx-sm-5 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .mx-sm-6 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mx-sm-7 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .mx-sm-8 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .mx-sm-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-sm-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .my-sm-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .my-sm-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .my-sm-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .my-sm-4 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .my-sm-5 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .my-sm-6 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .my-sm-7 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .my-sm-8 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .my-sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .p-sm-0 {
    padding: 0px;
  }
  .p-sm-1 {
    padding: 5px;
  }
  .p-sm-2 {
    padding: 10px;
  }
  .p-sm-3 {
    padding: 20px;
  }
  .p-sm-4 {
    padding: 30px;
  }
  .p-sm-5 {
    padding: 60px;
  }
  .p-sm-6 {
    padding: 80px;
  }
  .p-sm-7 {
    padding: 100px;
  }
  .p-sm-8 {
    padding: 120px;
  }
  .p-sm-auto {
    padding: auto;
  }
  .pt-sm-0 {
    padding-top: 0px;
  }
  .pt-sm-1 {
    padding-top: 5px;
  }
  .pt-sm-2 {
    padding-top: 10px;
  }
  .pt-sm-3 {
    padding-top: 20px;
  }
  .pt-sm-4 {
    padding-top: 30px;
  }
  .pt-sm-5 {
    padding-top: 60px;
  }
  .pt-sm-6 {
    padding-top: 80px;
  }
  .pt-sm-7 {
    padding-top: 100px;
  }
  .pt-sm-8 {
    padding-top: 120px;
  }
  .pt-sm-auto {
    padding-top: auto;
  }
  .pb-sm-0 {
    padding-bottom: 0px;
  }
  .pb-sm-1 {
    padding-bottom: 5px;
  }
  .pb-sm-2 {
    padding-bottom: 10px;
  }
  .pb-sm-3 {
    padding-bottom: 20px;
  }
  .pb-sm-4 {
    padding-bottom: 30px;
  }
  .pb-sm-5 {
    padding-bottom: 60px;
  }
  .pb-sm-6 {
    padding-bottom: 80px;
  }
  .pb-sm-7 {
    padding-bottom: 100px;
  }
  .pb-sm-8 {
    padding-bottom: 120px;
  }
  .pb-sm-auto {
    padding-bottom: auto;
  }
  .pl-sm-0 {
    padding-left: 0px;
  }
  .pl-sm-1 {
    padding-left: 5px;
  }
  .pl-sm-2 {
    padding-left: 10px;
  }
  .pl-sm-3 {
    padding-left: 20px;
  }
  .pl-sm-4 {
    padding-left: 30px;
  }
  .pl-sm-5 {
    padding-left: 60px;
  }
  .pl-sm-6 {
    padding-left: 80px;
  }
  .pl-sm-7 {
    padding-left: 100px;
  }
  .pl-sm-8 {
    padding-left: 120px;
  }
  .pl-sm-auto {
    padding-left: auto;
  }
  .pr-sm-0 {
    padding-right: 0px;
  }
  .pr-sm-1 {
    padding-right: 5px;
  }
  .pr-sm-2 {
    padding-right: 10px;
  }
  .pr-sm-3 {
    padding-right: 20px;
  }
  .pr-sm-4 {
    padding-right: 30px;
  }
  .pr-sm-5 {
    padding-right: 60px;
  }
  .pr-sm-6 {
    padding-right: 80px;
  }
  .pr-sm-7 {
    padding-right: 100px;
  }
  .pr-sm-8 {
    padding-right: 120px;
  }
  .pr-sm-auto {
    padding-right: auto;
  }
  .px-sm-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .px-sm-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .px-sm-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .px-sm-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .px-sm-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .px-sm-5 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .px-sm-6 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .px-sm-7 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .px-sm-8 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .px-sm-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .py-sm-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .py-sm-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .py-sm-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .py-sm-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .py-sm-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .py-sm-5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-sm-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .py-sm-7 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .py-sm-8 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .py-sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .m-md-0 {
    margin: 0px;
  }
  .m-md-1 {
    margin: 5px;
  }
  .m-md-2 {
    margin: 10px;
  }
  .m-md-3 {
    margin: 20px;
  }
  .m-md-4 {
    margin: 30px;
  }
  .m-md-5 {
    margin: 60px;
  }
  .m-md-6 {
    margin: 80px;
  }
  .m-md-7 {
    margin: 100px;
  }
  .m-md-8 {
    margin: 120px;
  }
  .m-md-auto {
    margin: auto;
  }
  .mt-md-0 {
    margin-top: 0px;
  }
  .mt-md-1 {
    margin-top: 5px;
  }
  .mt-md-2 {
    margin-top: 10px;
  }
  .mt-md-3 {
    margin-top: 20px;
  }
  .mt-md-4 {
    margin-top: 30px;
  }
  .mt-md-5 {
    margin-top: 60px;
  }
  .mt-md-6 {
    margin-top: 80px;
  }
  .mt-md-7 {
    margin-top: 100px;
  }
  .mt-md-8 {
    margin-top: 120px;
  }
  .mt-md-auto {
    margin-top: auto;
  }
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .mb-md-1 {
    margin-bottom: 5px;
  }
  .mb-md-2 {
    margin-bottom: 10px;
  }
  .mb-md-3 {
    margin-bottom: 20px;
  }
  .mb-md-4 {
    margin-bottom: 30px;
  }
  .mb-md-5 {
    margin-bottom: 60px;
  }
  .mb-md-6 {
    margin-bottom: 80px;
  }
  .mb-md-7 {
    margin-bottom: 100px;
  }
  .mb-md-8 {
    margin-bottom: 120px;
  }
  .mb-md-auto {
    margin-bottom: auto;
  }
  .ml-md-0 {
    margin-left: 0px;
  }
  .ml-md-1 {
    margin-left: 5px;
  }
  .ml-md-2 {
    margin-left: 10px;
  }
  .ml-md-3 {
    margin-left: 20px;
  }
  .ml-md-4 {
    margin-left: 30px;
  }
  .ml-md-5 {
    margin-left: 60px;
  }
  .ml-md-6 {
    margin-left: 80px;
  }
  .ml-md-7 {
    margin-left: 100px;
  }
  .ml-md-8 {
    margin-left: 120px;
  }
  .ml-md-auto {
    margin-left: auto;
  }
  .mr-md-0 {
    margin-right: 0px;
  }
  .mr-md-1 {
    margin-right: 5px;
  }
  .mr-md-2 {
    margin-right: 10px;
  }
  .mr-md-3 {
    margin-right: 20px;
  }
  .mr-md-4 {
    margin-right: 30px;
  }
  .mr-md-5 {
    margin-right: 60px;
  }
  .mr-md-6 {
    margin-right: 80px;
  }
  .mr-md-7 {
    margin-right: 100px;
  }
  .mr-md-8 {
    margin-right: 120px;
  }
  .mr-md-auto {
    margin-right: auto;
  }
  .mx-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mx-md-1 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mx-md-2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mx-md-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mx-md-4 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mx-md-5 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .mx-md-6 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mx-md-7 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .mx-md-8 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .mx-md-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .my-md-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .my-md-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .my-md-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .my-md-4 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .my-md-5 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .my-md-6 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .my-md-7 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .my-md-8 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .my-md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .p-md-0 {
    padding: 0px;
  }
  .p-md-1 {
    padding: 5px;
  }
  .p-md-2 {
    padding: 10px;
  }
  .p-md-3 {
    padding: 20px;
  }
  .p-md-4 {
    padding: 30px;
  }
  .p-md-5 {
    padding: 60px;
  }
  .p-md-6 {
    padding: 80px;
  }
  .p-md-7 {
    padding: 100px;
  }
  .p-md-8 {
    padding: 120px;
  }
  .p-md-auto {
    padding: auto;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
  .pt-md-1 {
    padding-top: 5px;
  }
  .pt-md-2 {
    padding-top: 10px;
  }
  .pt-md-3 {
    padding-top: 20px;
  }
  .pt-md-4 {
    padding-top: 30px;
  }
  .pt-md-5 {
    padding-top: 60px;
  }
  .pt-md-6 {
    padding-top: 80px;
  }
  .pt-md-7 {
    padding-top: 100px;
  }
  .pt-md-8 {
    padding-top: 120px;
  }
  .pt-md-auto {
    padding-top: auto;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
  .pb-md-1 {
    padding-bottom: 5px;
  }
  .pb-md-2 {
    padding-bottom: 10px;
  }
  .pb-md-3 {
    padding-bottom: 20px;
  }
  .pb-md-4 {
    padding-bottom: 30px;
  }
  .pb-md-5 {
    padding-bottom: 60px;
  }
  .pb-md-6 {
    padding-bottom: 80px;
  }
  .pb-md-7 {
    padding-bottom: 100px;
  }
  .pb-md-8 {
    padding-bottom: 120px;
  }
  .pb-md-auto {
    padding-bottom: auto;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
  .pl-md-1 {
    padding-left: 5px;
  }
  .pl-md-2 {
    padding-left: 10px;
  }
  .pl-md-3 {
    padding-left: 20px;
  }
  .pl-md-4 {
    padding-left: 30px;
  }
  .pl-md-5 {
    padding-left: 60px;
  }
  .pl-md-6 {
    padding-left: 80px;
  }
  .pl-md-7 {
    padding-left: 100px;
  }
  .pl-md-8 {
    padding-left: 120px;
  }
  .pl-md-auto {
    padding-left: auto;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
  .pr-md-1 {
    padding-right: 5px;
  }
  .pr-md-2 {
    padding-right: 10px;
  }
  .pr-md-3 {
    padding-right: 20px;
  }
  .pr-md-4 {
    padding-right: 30px;
  }
  .pr-md-5 {
    padding-right: 60px;
  }
  .pr-md-6 {
    padding-right: 80px;
  }
  .pr-md-7 {
    padding-right: 100px;
  }
  .pr-md-8 {
    padding-right: 120px;
  }
  .pr-md-auto {
    padding-right: auto;
  }
  .px-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .px-md-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .px-md-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .px-md-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .px-md-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .px-md-5 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .px-md-6 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .px-md-7 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .px-md-8 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .px-md-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .py-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .py-md-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .py-md-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .py-md-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .py-md-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .py-md-5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-md-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .py-md-7 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .py-md-8 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .py-md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
}
@media screen and (min-width: 992px) {
  .m-lg-0 {
    margin: 0px;
  }
  .m-lg-1 {
    margin: 5px;
  }
  .m-lg-2 {
    margin: 10px;
  }
  .m-lg-3 {
    margin: 20px;
  }
  .m-lg-4 {
    margin: 30px;
  }
  .m-lg-5 {
    margin: 60px;
  }
  .m-lg-6 {
    margin: 80px;
  }
  .m-lg-7 {
    margin: 100px;
  }
  .m-lg-8 {
    margin: 120px;
  }
  .m-lg-auto {
    margin: auto;
  }
  .mt-lg-0 {
    margin-top: 0px;
  }
  .mt-lg-1 {
    margin-top: 5px;
  }
  .mt-lg-2 {
    margin-top: 10px;
  }
  .mt-lg-3 {
    margin-top: 20px;
  }
  .mt-lg-4 {
    margin-top: 30px;
  }
  .mt-lg-5 {
    margin-top: 60px;
  }
  .mt-lg-6 {
    margin-top: 80px;
  }
  .mt-lg-7 {
    margin-top: 100px;
  }
  .mt-lg-8 {
    margin-top: 120px;
  }
  .mt-lg-auto {
    margin-top: auto;
  }
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .mb-lg-1 {
    margin-bottom: 5px;
  }
  .mb-lg-2 {
    margin-bottom: 10px;
  }
  .mb-lg-3 {
    margin-bottom: 20px;
  }
  .mb-lg-4 {
    margin-bottom: 30px;
  }
  .mb-lg-5 {
    margin-bottom: 60px;
  }
  .mb-lg-6 {
    margin-bottom: 80px;
  }
  .mb-lg-7 {
    margin-bottom: 100px;
  }
  .mb-lg-8 {
    margin-bottom: 120px;
  }
  .mb-lg-auto {
    margin-bottom: auto;
  }
  .ml-lg-0 {
    margin-left: 0px;
  }
  .ml-lg-1 {
    margin-left: 5px;
  }
  .ml-lg-2 {
    margin-left: 10px;
  }
  .ml-lg-3 {
    margin-left: 20px;
  }
  .ml-lg-4 {
    margin-left: 30px;
  }
  .ml-lg-5 {
    margin-left: 60px;
  }
  .ml-lg-6 {
    margin-left: 80px;
  }
  .ml-lg-7 {
    margin-left: 100px;
  }
  .ml-lg-8 {
    margin-left: 120px;
  }
  .ml-lg-auto {
    margin-left: auto;
  }
  .mr-lg-0 {
    margin-right: 0px;
  }
  .mr-lg-1 {
    margin-right: 5px;
  }
  .mr-lg-2 {
    margin-right: 10px;
  }
  .mr-lg-3 {
    margin-right: 20px;
  }
  .mr-lg-4 {
    margin-right: 30px;
  }
  .mr-lg-5 {
    margin-right: 60px;
  }
  .mr-lg-6 {
    margin-right: 80px;
  }
  .mr-lg-7 {
    margin-right: 100px;
  }
  .mr-lg-8 {
    margin-right: 120px;
  }
  .mr-lg-auto {
    margin-right: auto;
  }
  .mx-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mx-lg-1 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mx-lg-2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mx-lg-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mx-lg-4 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mx-lg-5 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .mx-lg-6 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mx-lg-7 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .mx-lg-8 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .mx-lg-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .my-lg-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .my-lg-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .my-lg-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .my-lg-4 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .my-lg-5 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .my-lg-6 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .my-lg-7 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .my-lg-8 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .my-lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .p-lg-0 {
    padding: 0px;
  }
  .p-lg-1 {
    padding: 5px;
  }
  .p-lg-2 {
    padding: 10px;
  }
  .p-lg-3 {
    padding: 20px;
  }
  .p-lg-4 {
    padding: 30px;
  }
  .p-lg-5 {
    padding: 60px;
  }
  .p-lg-6 {
    padding: 80px;
  }
  .p-lg-7 {
    padding: 100px;
  }
  .p-lg-8 {
    padding: 120px;
  }
  .p-lg-auto {
    padding: auto;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
  .pt-lg-1 {
    padding-top: 5px;
  }
  .pt-lg-2 {
    padding-top: 10px;
  }
  .pt-lg-3 {
    padding-top: 20px;
  }
  .pt-lg-4 {
    padding-top: 30px;
  }
  .pt-lg-5 {
    padding-top: 60px;
  }
  .pt-lg-6 {
    padding-top: 80px;
  }
  .pt-lg-7 {
    padding-top: 100px;
  }
  .pt-lg-8 {
    padding-top: 120px;
  }
  .pt-lg-auto {
    padding-top: auto;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
  .pb-lg-1 {
    padding-bottom: 5px;
  }
  .pb-lg-2 {
    padding-bottom: 10px;
  }
  .pb-lg-3 {
    padding-bottom: 20px;
  }
  .pb-lg-4 {
    padding-bottom: 30px;
  }
  .pb-lg-5 {
    padding-bottom: 60px;
  }
  .pb-lg-6 {
    padding-bottom: 80px;
  }
  .pb-lg-7 {
    padding-bottom: 100px;
  }
  .pb-lg-8 {
    padding-bottom: 120px;
  }
  .pb-lg-auto {
    padding-bottom: auto;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
  .pl-lg-1 {
    padding-left: 5px;
  }
  .pl-lg-2 {
    padding-left: 10px;
  }
  .pl-lg-3 {
    padding-left: 20px;
  }
  .pl-lg-4 {
    padding-left: 30px;
  }
  .pl-lg-5 {
    padding-left: 60px;
  }
  .pl-lg-6 {
    padding-left: 80px;
  }
  .pl-lg-7 {
    padding-left: 100px;
  }
  .pl-lg-8 {
    padding-left: 120px;
  }
  .pl-lg-auto {
    padding-left: auto;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
  .pr-lg-1 {
    padding-right: 5px;
  }
  .pr-lg-2 {
    padding-right: 10px;
  }
  .pr-lg-3 {
    padding-right: 20px;
  }
  .pr-lg-4 {
    padding-right: 30px;
  }
  .pr-lg-5 {
    padding-right: 60px;
  }
  .pr-lg-6 {
    padding-right: 80px;
  }
  .pr-lg-7 {
    padding-right: 100px;
  }
  .pr-lg-8 {
    padding-right: 120px;
  }
  .pr-lg-auto {
    padding-right: auto;
  }
  .px-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .px-lg-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .px-lg-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .px-lg-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .px-lg-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .px-lg-5 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .px-lg-6 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .px-lg-7 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .px-lg-8 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .px-lg-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .py-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .py-lg-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .py-lg-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .py-lg-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .py-lg-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .py-lg-5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-lg-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .py-lg-7 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .py-lg-8 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .py-lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
}
@media screen and (min-width: 1200px) {
  .m-xl-0 {
    margin: 0px;
  }
  .m-xl-1 {
    margin: 5px;
  }
  .m-xl-2 {
    margin: 10px;
  }
  .m-xl-3 {
    margin: 20px;
  }
  .m-xl-4 {
    margin: 30px;
  }
  .m-xl-5 {
    margin: 60px;
  }
  .m-xl-6 {
    margin: 80px;
  }
  .m-xl-7 {
    margin: 100px;
  }
  .m-xl-8 {
    margin: 120px;
  }
  .m-xl-auto {
    margin: auto;
  }
  .mt-xl-0 {
    margin-top: 0px;
  }
  .mt-xl-1 {
    margin-top: 5px;
  }
  .mt-xl-2 {
    margin-top: 10px;
  }
  .mt-xl-3 {
    margin-top: 20px;
  }
  .mt-xl-4 {
    margin-top: 30px;
  }
  .mt-xl-5 {
    margin-top: 60px;
  }
  .mt-xl-6 {
    margin-top: 80px;
  }
  .mt-xl-7 {
    margin-top: 100px;
  }
  .mt-xl-8 {
    margin-top: 120px;
  }
  .mt-xl-auto {
    margin-top: auto;
  }
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .mb-xl-1 {
    margin-bottom: 5px;
  }
  .mb-xl-2 {
    margin-bottom: 10px;
  }
  .mb-xl-3 {
    margin-bottom: 20px;
  }
  .mb-xl-4 {
    margin-bottom: 30px;
  }
  .mb-xl-5 {
    margin-bottom: 60px;
  }
  .mb-xl-6 {
    margin-bottom: 80px;
  }
  .mb-xl-7 {
    margin-bottom: 100px;
  }
  .mb-xl-8 {
    margin-bottom: 120px;
  }
  .mb-xl-auto {
    margin-bottom: auto;
  }
  .ml-xl-0 {
    margin-left: 0px;
  }
  .ml-xl-1 {
    margin-left: 5px;
  }
  .ml-xl-2 {
    margin-left: 10px;
  }
  .ml-xl-3 {
    margin-left: 20px;
  }
  .ml-xl-4 {
    margin-left: 30px;
  }
  .ml-xl-5 {
    margin-left: 60px;
  }
  .ml-xl-6 {
    margin-left: 80px;
  }
  .ml-xl-7 {
    margin-left: 100px;
  }
  .ml-xl-8 {
    margin-left: 120px;
  }
  .ml-xl-auto {
    margin-left: auto;
  }
  .mr-xl-0 {
    margin-right: 0px;
  }
  .mr-xl-1 {
    margin-right: 5px;
  }
  .mr-xl-2 {
    margin-right: 10px;
  }
  .mr-xl-3 {
    margin-right: 20px;
  }
  .mr-xl-4 {
    margin-right: 30px;
  }
  .mr-xl-5 {
    margin-right: 60px;
  }
  .mr-xl-6 {
    margin-right: 80px;
  }
  .mr-xl-7 {
    margin-right: 100px;
  }
  .mr-xl-8 {
    margin-right: 120px;
  }
  .mr-xl-auto {
    margin-right: auto;
  }
  .mx-xl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .mx-xl-1 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mx-xl-2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mx-xl-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .mx-xl-4 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mx-xl-5 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .mx-xl-6 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mx-xl-7 {
    margin-left: 100px;
    margin-right: 100px;
  }
  .mx-xl-8 {
    margin-left: 120px;
    margin-right: 120px;
  }
  .mx-xl-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .my-xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .my-xl-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .my-xl-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .my-xl-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .my-xl-4 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .my-xl-5 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .my-xl-6 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .my-xl-7 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .my-xl-8 {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .my-xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .p-xl-0 {
    padding: 0px;
  }
  .p-xl-1 {
    padding: 5px;
  }
  .p-xl-2 {
    padding: 10px;
  }
  .p-xl-3 {
    padding: 20px;
  }
  .p-xl-4 {
    padding: 30px;
  }
  .p-xl-5 {
    padding: 60px;
  }
  .p-xl-6 {
    padding: 80px;
  }
  .p-xl-7 {
    padding: 100px;
  }
  .p-xl-8 {
    padding: 120px;
  }
  .p-xl-auto {
    padding: auto;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
  .pt-xl-1 {
    padding-top: 5px;
  }
  .pt-xl-2 {
    padding-top: 10px;
  }
  .pt-xl-3 {
    padding-top: 20px;
  }
  .pt-xl-4 {
    padding-top: 30px;
  }
  .pt-xl-5 {
    padding-top: 60px;
  }
  .pt-xl-6 {
    padding-top: 80px;
  }
  .pt-xl-7 {
    padding-top: 100px;
  }
  .pt-xl-8 {
    padding-top: 120px;
  }
  .pt-xl-auto {
    padding-top: auto;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
  .pb-xl-1 {
    padding-bottom: 5px;
  }
  .pb-xl-2 {
    padding-bottom: 10px;
  }
  .pb-xl-3 {
    padding-bottom: 20px;
  }
  .pb-xl-4 {
    padding-bottom: 30px;
  }
  .pb-xl-5 {
    padding-bottom: 60px;
  }
  .pb-xl-6 {
    padding-bottom: 80px;
  }
  .pb-xl-7 {
    padding-bottom: 100px;
  }
  .pb-xl-8 {
    padding-bottom: 120px;
  }
  .pb-xl-auto {
    padding-bottom: auto;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
  .pl-xl-1 {
    padding-left: 5px;
  }
  .pl-xl-2 {
    padding-left: 10px;
  }
  .pl-xl-3 {
    padding-left: 20px;
  }
  .pl-xl-4 {
    padding-left: 30px;
  }
  .pl-xl-5 {
    padding-left: 60px;
  }
  .pl-xl-6 {
    padding-left: 80px;
  }
  .pl-xl-7 {
    padding-left: 100px;
  }
  .pl-xl-8 {
    padding-left: 120px;
  }
  .pl-xl-auto {
    padding-left: auto;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
  .pr-xl-1 {
    padding-right: 5px;
  }
  .pr-xl-2 {
    padding-right: 10px;
  }
  .pr-xl-3 {
    padding-right: 20px;
  }
  .pr-xl-4 {
    padding-right: 30px;
  }
  .pr-xl-5 {
    padding-right: 60px;
  }
  .pr-xl-6 {
    padding-right: 80px;
  }
  .pr-xl-7 {
    padding-right: 100px;
  }
  .pr-xl-8 {
    padding-right: 120px;
  }
  .pr-xl-auto {
    padding-right: auto;
  }
  .px-xl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .px-xl-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .px-xl-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .px-xl-3 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .px-xl-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .px-xl-5 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .px-xl-6 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .px-xl-7 {
    padding-left: 100px;
    padding-right: 100px;
  }
  .px-xl-8 {
    padding-left: 120px;
    padding-right: 120px;
  }
  .px-xl-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .py-xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .py-xl-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .py-xl-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .py-xl-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .py-xl-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .py-xl-5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-xl-6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .py-xl-7 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .py-xl-8 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .py-xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
}
/* 
	2020.12.30
	utils _ 通用類別
*/
/*------------------------------------*\
 $FONT-COLOR
\*------------------------------------*/
/*------------------------------------*\
 $TEXT-SHADOW
\*------------------------------------*/
.t-shadow-black {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/*------------------------------------*\
 $BACKGROUND-COLOR
\*------------------------------------*/
/*------------------------------------*\
 $TEXT-ALIGN
\*------------------------------------*/
.t-left {
  text-align: left;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

/*------------------------------------*\
 $TEXT-UNDERLINE
\*------------------------------------*/
.t-underline {
  text-decoration: underline;
}

/*------------------------------------*\
 $DISPLAY
\*------------------------------------*/
/*------------------------------------*\
 $SPACING
\*------------------------------------*/
.m-1 {
  margin: 5px;
}

.m-2 {
  margin: 10px;
}

.m-3 {
  margin: 20px;
}

.m-4 {
  margin: 30px;
}

.m-5 {
  margin: 40px;
}

.m-6 {
  margin: 50px;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 20px;
}

.mt-4 {
  margin-top: 30px;
}

.mt-5 {
  margin-top: 40px;
}

.mt-6 {
  margin-top: 50px;
}

.mt-7 {
  margin-top: 60px;
}

.mt-8 {
  margin-top: 70px;
}

.mt-n1 {
  margin-top: -5px;
}

.mt-n2 {
  margin-top: -10px;
}

.mt-n3 {
  margin-top: -20px;
}

.mt-n4 {
  margin-top: -30px;
}

.mt-n5 {
  margin-top: -40px;
}

.mt-n6 {
  margin-top: -50px;
}

.mr-1 {
  margin-right: 5px;
}

.mr-2 {
  margin-right: 10px;
}

.mr-3 {
  margin-right: 20px;
}

.mr-4 {
  margin-right: 30px;
}

.mr-5 {
  margin-right: 40px;
}

.mr-6 {
  margin-right: 50px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 40px;
}

.mb-6 {
  margin-bottom: 50px;
}

.mb-7 {
  margin-bottom: 60px;
}

.ml-1 {
  margin-left: 5px;
}

.ml-2 {
  margin-left: 10px;
}

.ml-3 {
  margin-left: 20px;
}

.ml-4 {
  margin-left: 30px;
}

.ml-5 {
  margin-left: 40px;
}

.ml-6 {
  margin-left: 50px;
}

.my-1 {
  margin: 5px 0;
}

.my-2 {
  margin: 10px 0;
}

.my-3 {
  margin: 20px 0;
}

.my-4 {
  margin: 30px 0;
}

.my-5 {
  margin: 40px 0;
}

.my-6 {
  margin: 50px 0;
}

.my-7 {
  margin: 60px 0;
}

.p-1 {
  padding: 5px;
}

.p-2 {
  padding: 10px;
}

.p-3 {
  padding: 20px;
}

.p-4 {
  padding: 30px;
}

.p-5 {
  padding: 40px;
}

.p-6 {
  padding: 50px;
}

.pl-1 {
  padding-left: 5px;
}

.pl-2 {
  padding-left: 10px;
}

.pl-3 {
  padding-left: 20px;
}

.pl-4 {
  padding-left: 30px;
}

.pl-5 {
  padding-left: 40px;
}

.pl-6 {
  padding-left: 50px;
}

.pt-1 {
  padding-top: 5px;
}

.pt-2 {
  padding-top: 10px;
}

.pt-3 {
  padding-top: 20px;
}

.pt-4 {
  padding-top: 30px;
}

.pt-5 {
  padding-top: 40px;
}

.pt-6 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 20px;
}

.pb-4 {
  padding-bottom: 30px;
}

.pb-5 {
  padding-bottom: 40px;
}

.pb-6 {
  padding-bottom: 50px;
}

.pb-7 {
  padding-bottom: 60px;
}

.px-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-3 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-4 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-5 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-6 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-4 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-6 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-7 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-8 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.w-100 {
  width: 100%;
}

/*------------------------------------*\
 $CURSOR
\*------------------------------------*/
.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-false {
  cursor: not-allowed;
}

/*------------------------------------*\
 $TRANSTION
\*------------------------------------*/
/*------------------------------------*\
 $POSITION
\*------------------------------------*/
/*------------------------------------*\
 $ICON
\*------------------------------------*/
/*------------------------------------*\
 $RADIUS
\*------------------------------------*/
:root {
  --MSC-color-primary-50: #fff;
}

.tripBTN {
  display: none;
}
@media (max-width: 768px) {
  .tripBTN {
    position: fixed;
    top: 11px;
    right: 16px;
    font-size: 16px;
    letter-spacing: 0.06em;
    z-index: 20000;
    padding: 5px 16px 7px 16px;
    background-color: rgb(27, 82, 184);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    font-family: "Microsoft JhengHei", PingFang, STHeiti, sans-serif, serif;
    text-align: center;
  }
  .tripBTN a {
    color: white;
    text-decoration: none;
  }
}

.topbanner_fb,
.topbanner_line,
.topbanner_g {
  display: none;
}

body {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  background: linear-gradient(90deg, #5FD1E7 0%, #52A9E4 48.36%, #4072DF 100%);
}
@media (max-width: 768px) {
  body {
    background-image: unset;
    background: linear-gradient(90deg, #5FD1E7 0%, #52A9E4 48.36%, #4072DF 100%);
  }
}

.main_wrapper {
  font-family: "noto serif tc";
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.msc_title_wrap {
  margin-top: 81px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--MSC-color-primary-50);
  text-align: center;
}
@media (max-width: 768px) {
  .msc_title_wrap {
    margin-top: 60px;
    padding-left: 28px;
    padding-right: 28px;
    line-height: 1.7;
  }
}
.msc_title_wrap .msc_title_img {
  width: 250px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .msc_title_wrap .msc_title_img {
    width: 200px;
  }
}
.msc_title_wrap .msc_title {
  font-size: 32px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .msc_title_wrap .msc_title {
    font-size: 22px;
  }
}
.msc_title_wrap .msc_descrition {
  font-size: 20px;
}
@media (max-width: 768px) {
  .msc_title_wrap .msc_descrition {
    font-size: 16px;
    text-align: start;
  }
}

.slider-scroll {
  font-family: "noto serif tc";
  background: rgba(186, 186, 186, 0.4);
  backdrop-filter: blur(2px);
  position: fixed;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  z-index: 100;
  text-align: center;
  top: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
.slider-scroll::-webkit-scrollbar {
  height: 8px;
}
.slider-scroll::-webkit-scrollbar-track {
  background: rgba(186, 186, 186, 0.4);
  backdrop-filter: blur(2px);
}
.slider-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}
.slider-scroll.slider-visible {
  display: block;
}
@media (max-width: 992px) {
  .slider-scroll {
    justify-content: flex-start;
  }
}
.slider-scroll {
  white-space: nowrap;
}
.slider-scroll .slider-list {
  padding: 6px 0 6px 0;
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
  width: auto;
}
.slider-scroll .slider-list .slider-item {
  display: inline-block;
  cursor: pointer;
  padding: 8px 12px;
  margin: 0 12px 0 12px;
  min-width: 100px;
}
@media (max-width: 768px) {
  .slider-scroll .slider-list .slider-item {
    padding: 12px 0px;
    margin: 0 8px;
  }
  .slider-scroll .slider-list .slider-item.product-item {
    padding: 8px 15px;
  }
}
.slider-scroll .slider-list .slider-item.active {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  color: var(--MSC-color-primary-50);
}
.slider-scroll .slider-list .product-item {
  border-radius: 100px;
  background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);
}
.slider-scroll .slider-list .product-item1 {
  border-radius: 100px;
  background: linear-gradient(0deg, rgb(225, 150, 221) 0%, rgb(250, 140, 219) 100%);
}
.slider-scroll .slider-list a {
  color: rgb(0, 0, 0);
  font-size: 16px;
  color: var(--MSC-color-primary-50);
  text-decoration: none;
}

.kv_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../img/kv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  margin-top: 52px;
}
@media (max-width: 768px) {
  .kv_wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0px;
    background-image: unset;
    background: linear-gradient(180deg, #0CA1FF 0%, #0CA1FF 66.83%, #000 100%);
  }
}
.kv_wrapper .kv_video_filter {
  height: 100vh;
  position: absolute;
  z-index: 1;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_video_filter {
    height: unset;
    display: none;
  }
}
.kv_wrapper .kv_video_filter img {
  height: 100%;
}
.kv_wrapper .kv_txt_wrap {
  width: 35%;
  color: var(--MSC-color-primary-50);
  z-index: 2;
  font-size: 64px;
  padding-left: 5%;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .kv_wrapper .kv_txt_wrap {
    font-size: 48px;
    padding-left: 3%;
  }
}
@media (max-width: 1200px) {
  .kv_wrapper .kv_txt_wrap {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .kv_wrapper .kv_txt_wrap {
    font-size: 10cqw;
    padding-top: 88px;
    width: 100%;
    background: linear-gradient(180deg, #0CA1FF 0%, #1db0ff 40%, rgb(19, 171, 255) 100%);
    z-index: 4;
  }
}
.kv_wrapper .kv_txt_wrap .kv_txt_brief {
  font-size: 0.5em;
  margin-bottom: 36px;
  font-weight: 100;
  display: flex;
  gap: 0.4em;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_txt_wrap .kv_txt_brief {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .kv_wrapper .kv_txt_wrap .kv_txt_brief {
    margin-bottom: 24px;
    font-size: 0.6em;
    flex-wrap: wrap;
    gap: 0.4em;
    flex-direction: column-reverse;
  }
}
.kv_wrapper .kv_txt_wrap .kv_txt_title {
  font-size: 1em;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.kv_wrapper .kv_txt_wrap .kv_txt_subtitle {
  font-size: 0.4em;
  margin-bottom: 42px;
}
@media (max-width: 576px) {
  .kv_wrapper .kv_txt_wrap .kv_txt_subtitle {
    font-size: 0.6em;
    margin-bottom: 0;
  }
}
.kv_wrapper .kv_txt_wrap .kv_txt_content {
  font-size: 0.3em;
  margin-top: 100px;
}
.kv_wrapper .kv_video_wrap {
  height: 84vh;
  overflow: hidden;
  -webkit-mask-image: url(../img/bannerMask.svg);
          mask-image: url(../img/bannerMask.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_video_wrap {
    -webkit-mask-image: unset;
            mask-image: unset;
    height: unset;
    position: relative;
    width: 100%;
  }
}
.kv_wrapper .kv_video_wrap img {
  height: 100%;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_video_wrap img {
    height: unset;
    width: 100%;
  }
}
.kv_wrapper .kv_video_wrap .kv_mask {
  display: none;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_video_wrap .kv_mask {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, rgb(19, 171, 255) 0%, rgba(19, 172, 255, 0) 100%);
    z-index: 4;
  }
}
@media (max-width: 768px) {
  .kv_wrapper .kv_img {
    display: none;
  }
}
.kv_wrapper .kv_img-m {
  display: none;
}
@media (max-width: 768px) {
  .kv_wrapper .kv_img-m {
    display: block;
    width: 100%;
  }
}

.kv_special {
  position: absolute;
  left: 5%;
  z-index: 10;
  bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1440px) {
  .kv_special {
    bottom: 80px;
  }
}
@media (max-width: 1200px) {
  .kv_special {
    bottom: 120px;
  }
}
@media (max-width: 768px) {
  .kv_special {
    left: unset;
    right: 12px;
    top: unset;
    bottom: 80px;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .kv_special {
    bottom: 20px;
  }
}
@media (max-width: 576px) {
  .kv_special a {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 1440px) {
  .kv_special img {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .kv_special img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .kv_special img {
    width: 80%;
    display: block;
  }
}
@media (max-width: 576px) {
  .kv_special img {
    width: 60%;
    bottom: 20px;
  }
}

.brief_wrap {
  background-color: rgba(0, 0, 0, 0.784);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  color: var(--MSC-color-primary-50);
}
@media (max-width: 1440px) {
  .brief_wrap {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 768px) {
  .brief_wrap {
    padding: 0 12px;
    height: auto;
  }
}
.brief_wrap .brief_gap {
  position: absolute;
  z-index: 4;
  width: 100%;
  top: -150px;
}
@media (max-width: 1440px) {
  .brief_wrap .brief_gap {
    top: -80px;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_gap {
    top: -40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 13.46%, #000 50%, rgba(0, 0, 0, 0) 100%);
    top: -100px;
    display: none;
  }
}
.brief_wrap .brief_gap img {
  width: 100%;
}
.brief_wrap .brief_gap .brief_scroll {
  display: flex;
  align-items: center;
  width: 120px;
  margin: 0 auto;
}
.brief_wrap .brief_profile {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 64px;
}
@media (max-width: 1440px) {
  .brief_wrap .brief_profile {
    margin-top: 120px;
    padding-top: 160px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_profile {
    margin-top: 200px;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_profile {
    padding-top: 56px;
    margin-top: 150px;
    margin-bottom: 128px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
}
.brief_wrap .brief_profile h1 {
  font-size: 36px;
}
@media (max-width: 768px) {
  .brief_wrap .brief_profile h1 {
    font-size: 20px;
  }
}
.brief_wrap .brief_profile .profile_info_wrap {
  padding: 20px 32px;
  display: flex;
  margin-top: 32px;
  border: #fff solid 1px;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .brief_wrap .brief_profile .profile_info_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 32px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_profile .profile_info_wrap {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_profile .profile_info_wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 16px;
  }
}
.brief_wrap .brief_profile .profile_info_wrap .profile_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
}
@media (max-width: 1400px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info {
    margin: 0 24px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info {
    margin: 0;
  }
}
.brief_wrap .brief_profile .profile_info_wrap .profile_info h1 {
  font-size: 40px;
  padding-bottom: 24px;
}
@media (max-width: 1400px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info h1 {
    font-size: 28px;
    padding-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info h1 {
    font-size: 20px;
  }
}
.brief_wrap .brief_profile .profile_info_wrap .profile_info h2 {
  font-size: 20px;
}
@media (max-width: 1400px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info h2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_profile .profile_info_wrap .profile_info h2 {
    font-size: 14px;
  }
}
.brief_wrap .scroll-icon {
  position: absolute;
  top: 8px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .brief_wrap .scroll-icon {
    display: none;
  }
}
.brief_wrap .scroll-icon .ball {
  height: 60px;
  width: 100%;
  position: relative;
}
.brief_wrap .scroll-icon .ball::after {
  margin: auto;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--MSC-color-primary-50);
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 1;
  animation: wheel 1.6s infinite;
}
@keyframes wheel {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    top: 40px;
  }
  100% {
    opacity: 0;
    top: 60px;
  }
}
.brief_wrap .brief_video {
  position: absolute;
  overflow: hidden;
  width: 100%;
  max-height: 100vh;
  z-index: -1;
  height: 100%;
}
@media (max-width: 1440px) {
  .brief_wrap .brief_video {
    max-height: unset;
  }
}
@media (max-width: 1920px) {
  .brief_wrap .brief_video {
    width: 100%;
  }
}
.brief_wrap .brief_video video {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 1919px) {
  .brief_wrap .brief_video video {
    width: unset;
    height: 100%;
  }
}
@media (max-width: 1440px) {
  .brief_wrap .brief_video video {
    width: auto;
  }
}
.brief_wrap .brief_txt_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .brief_wrap .brief_txt_wrap {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_txt_wrap {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_txt_wrap {
    padding-top: 80px;
  }
}
.brief_wrap .brief_txt_wrap .brief_title {
  font-family: "noto serif tc";
  letter-spacing: 4px;
  font-size: 36px;
  margin-bottom: 32px;
}
@media (max-width: 1400px) {
  .brief_wrap .brief_txt_wrap .brief_title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .brief_wrap .brief_txt_wrap .brief_title {
    font-size: 24px;
    margin-bottom: 42px;
  }
}
.brief_wrap .brief_txt_wrap .brief_txt {
  font-family: "noto serif tc";
  text-align: center;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 4;
}
@media (max-width: 1400px) {
  .brief_wrap .brief_txt_wrap .brief_txt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .brief_wrap .brief_txt_wrap .brief_txt {
    width: 308px;
    line-height: 3.2;
  }
}

.facility_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.facility_wrap .swiper-container {
  position: relative;
  width: 90%;
  height: 50vh;
  margin-top: 180px;
  margin-bottom: 100px;
}
@media (max-width: 1440px) {
  .facility_wrap .swiper-container {
    margin-left: 24px;
  }
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container {
    margin-top: 38px;
    height: 216px;
    width: 80%;
    margin-left: 20px;
  }
}
.facility_wrap .swiper-container .swiper-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  align-items: center;
  border-radius: 30px;
  cursor: grab;
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide {
    border-radius: 24px 0px 0px 0px;
  }
}
.facility_wrap .swiper-container .swiper-slide {
  padding-bottom: 50px;
}
.facility_wrap .swiper-container .swiper-slide .slide_txt {
  width: 45%;
  position: absolute;
  text-align: left;
  bottom: -50px;
  right: -50px;
  display: flex;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8862745098);
  border: 1px solid #fff;
  flex-direction: column;
  padding: 32px;
}
@media (max-width: 1440px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt {
    align-items: flex-start;
    bottom: -140px;
    right: unset;
    width: calc(100% - 28px);
    top: 252px;
    bottom: unset;
  }
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.42) 75.96%);
    border: 1px solid #FFF;
    border-radius: 0px 0px 24px 0px;
    padding: 12px 8px 28px 8px;
    min-height: 192px;
    box-sizing: border-box;
  }
}
.facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title {
  padding-right: 20px;
  margin-left: 30px;
  padding-bottom: 20px;
}
@media (max-width: 1100px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title {
    margin-left: 10px;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title {
    padding-bottom: 0;
  }
}
.facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title h1 {
  font-size: 24px;
  padding-bottom: 8px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title h1 {
    font-size: 18px;
    padding-bottom: 0;
  }
}
.facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title h2 {
  font-size: 16px;
  font-family: "noto sans tc";
  line-height: 1.5;
}
@media (max-width: 500px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_title h2 {
    font-size: 14px;
  }
}
.facility_wrap .swiper-container .swiper-slide .slide_txt .slide_content {
  padding-left: 30px;
  width: 90%;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1px;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_content {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    width: 100%;
    padding-top: 16px;
  }
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-slide .slide_txt .slide_content {
    padding-top: 12px;
  }
}
.facility_wrap .swiper-container .swiper-pagination {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.facility_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  flex-direction: row;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8235294118);
  opacity: 0.6;
}
.facility_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #d1b99c;
  width: 100px;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}
.facility_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 12px 0;
}
@media screen and (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.facility_wrap .swiper-container .swiper-button-next,
.facility_wrap .swiper-container .swiper-button-prev {
  width: 72px;
  height: 72px;
  position: absolute;
  color: var(--MSC-color-primary-50);
  z-index: 10;
  top: -80px;
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-button-next,
  .facility_wrap .swiper-container .swiper-button-prev {
    background-size: 42px 42px;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
  }
}
.facility_wrap .swiper-container .swiper-button-next::after,
.facility_wrap .swiper-container .swiper-button-prev::after {
  content: unset;
}
.facility_wrap .swiper-container .swiper-button-next {
  right: -50px;
  background-image: url(../img/button-next.png);
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-button-next {
    top: 94px;
  }
}
.facility_wrap .swiper-container .swiper-button-prev {
  background-image: url(../img/button-prev.png);
  right: 70px !important;
  left: unset !important;
}
@media (max-width: 768px) {
  .facility_wrap .swiper-container .swiper-button-prev {
    top: 94px;
    left: -20px !important;
  }
}

.restaurant_wrap {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 200px;
  padding-bottom: 200px;
  box-sizing: border-box;
  max-width: 1920px;
}
@media (max-width: 768px) {
  .restaurant_wrap {
    width: 100%;
    padding-top: 140px;
    padding-bottom: 72px;
  }
}
.restaurant_wrap .msc_title_wrap {
  margin-top: 0;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .restaurant_wrap .msc_title_wrap {
    margin-top: 60px;
  }
}
.restaurant_wrap .dining_wrap {
  font-family: "Noto Sans TC";
  display: flex;
  overflow: hidden;
  padding: 12px;
  gap: 12px;
}
@media (max-width: 1600px) {
  .restaurant_wrap .dining_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1200px) {
  .restaurant_wrap .dining_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.restaurant_wrap .dining_slide {
  overflow: hidden;
  cursor: pointer;
  background-color: rgb(0, 0, 0);
  height: 450px;
  transition: 0.4s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_slide {
    height: 247px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_bar {
    position: absolute;
    top: 20px;
    z-index: 2;
    display: flex;
    gap: 4px;
  }
}
.restaurant_wrap .dining_cta {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  z-index: 3;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_cta {
    left: 0;
    right: unset;
    top: 24px;
    bottom: unset;
    border-radius: 0 50px 50px 0;
    background-color: #F8B20D;
    color: var(--MSC-color-primary-50);
    padding: 10px 24px 10px 16px;
    position: unset;
  }
}
.restaurant_wrap .dining_cta img {
  padding-left: 4px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_cta img {
    display: none;
  }
}
.restaurant_wrap .dining_txt_wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  z-index: 1;
  flex-direction: column;
  padding: 0 0 0px 12px;
  position: relative;
  bottom: 72px;
  background-color: rgba(0, 0, 0, 0.44);
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_txt_wrap {
    padding: 0 20px 16px 12px;
    bottom: 0;
  }
}
.restaurant_wrap .dining_txt_wrap .dining_slide_title-second {
  font-size: 0.6em;
}
.restaurant_wrap .dining_txt_wrap .dining_slide_title {
  color: var(--MSC-color-primary-50);
  transition: opacity 0.6s ease;
  padding: 12px 0;
  white-space: nowrap;
}
.restaurant_wrap .dining_txt_wrap .dining_slide_title h2 {
  font-size: 16px;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_txt_wrap .dining_slide_title h2 {
    font-size: 18px;
    padding-right: 20px;
  }
}
.restaurant_wrap .dining_txt_wrap .dining_slide_title h1 {
  font-size: 20px;
  line-height: 1.3;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_txt_wrap .dining_slide_title h1 {
    font-size: 16px;
  }
}
.restaurant_wrap .dining_txt_wrap .dining_slide_txt {
  box-sizing: border-box;
  color: var(--MSC-color-primary-50);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.1s ease 0.1s, transform 0.3s ease 0.1s;
  list-style: disc;
  width: 100%;
  max-width: 400px;
  transform: translateX(-20px);
  bottom: 10%;
  pointer-events: none;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-left: 24px;
  display: none;
}
@media (max-width: 1600px) {
  .restaurant_wrap .dining_txt_wrap .dining_slide_txt {
    padding-left: 16px;
    width: 100%;
    transition: unset;
    white-space: wrap;
  }
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_txt_wrap .dining_slide_txt {
    position: unset;
    display: none;
    width: unset;
  }
}
.restaurant_wrap .dining_txt_wrap .dining_slide_txt h2 {
  font-size: 16px;
  padding-bottom: 12px;
}
.restaurant_wrap .dining_txt_wrap .dining_slide_txt h1 {
  font-size: 20px;
  padding-bottom: 12px;
}
.restaurant_wrap .dining_txt_wrap .dining_slide_txt li {
  line-height: 2;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_txt_wrap .dining_slide_txt li {
    font-size: 14px;
  }
}
.restaurant_wrap .stutus {
  position: absolute;
  top: 20px;
}
.restaurant_wrap .dining_btn {
  display: none;
  background-color: transparent;
  color: var(--MSC-color-primary-50);
  border: 1px solid #fff;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px 4px 12px;
  background-color: rgba(0, 0, 0, 0.44);
}
.restaurant_wrap .dining_btn svg {
  width: 16px;
}
@media (max-width: 768px) {
  .restaurant_wrap .dining_btn {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}
@media (max-width: 576px) {
  .restaurant_wrap .dining_btn {
    padding: 4px 14px 5px 12px;
  }
}
.restaurant_wrap .dining_slide_mask {
  position: absolute;
  background-color: unset;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
@media (min-width: 769px) {
  .restaurant_wrap .dining_slide:hover {
    flex: 5;
  }
  .restaurant_wrap .dining_slide:hover .dining_slide_mask {
    transition: 0.3s ease;
  }
  .restaurant_wrap .dining_slide:hover .dining_txt_wrap {
    bottom: 10%;
  }
  .restaurant_wrap .dining_slide:hover .dining_slide_txt {
    animation-delay: 2s;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    display: block;
  }
}
@media (max-width: 1200px) {
  .restaurant_wrap .dining_slide.active {
    flex: 3;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  .restaurant_wrap .dining_slide.active {
    height: 446px;
  }
}
@media (max-width: 1200px) {
  .restaurant_wrap .dining_slide.active .dining_slide_mask {
    transition: 0.3s;
  }
  .restaurant_wrap .dining_slide.active .dining_txt_wrap {
    bottom: 10%;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  .restaurant_wrap .dining_slide.active .dining_txt_wrap {
    bottom: unset;
    margin-left: 0;
    transition: unset;
    justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .restaurant_wrap .dining_slide.active .dining_slide_txt {
    animation-delay: 2s;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    display: block;
  }
}
.restaurant_wrap img {
  height: 100%;
}
.restaurant_wrap ul {
  margin-top: 32px;
  padding-left: 20px;
}

.room_wrap {
  background-color: #224e79;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .room_wrap {
    padding: 0 12px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
}
.room_wrap .msc_title_wrap {
  margin-top: 0;
  padding-top: 80px;
}
.room_wrap .room_swiper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.room_wrap .room_brief_wrap {
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #d8bd9c;
  background: rgba(0, 0, 0, 0.5647058824);
  padding: 32px 40px;
  border-left: 24px solid black;
  border-radius: 20px;
  margin-bottom: 76px;
  margin-top: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .room_wrap .room_brief_wrap {
    padding: 40px 20px;
    border-width: 4px;
    border-radius: 0px 20px 20px 0px;
    margin-top: 8px;
  }
}
.room_wrap .room_brief_wrap h1 {
  font-size: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .room_wrap .room_brief_wrap h1 {
    font-size: 24px;
  }
}
.room_wrap .room_brief_wrap .room_brief {
  font-size: 18px;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .room_wrap .room_brief_wrap .room_brief {
    font-size: 16px;
  }
}
.room_wrap .tabs {
  white-space: nowrap;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 40px;
  width: 80%;
  justify-content: center;
  font-family: "noto serif tc";
  position: relative;
}
@media (max-width: 768px) {
  .room_wrap .tabs {
    gap: 8px;
    width: unset;
    margin-bottom: 32px;
    align-items: center;
  }
}
.room_wrap .tabs .tab {
  padding: 0.5rem 1rem;
  font-family: "noto serif tc";
  letter-spacing: 1px;
  font-size: 16px;
  color: var(--MSC-color-primary-50);
  border: 1px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  background: fixed;
  opacity: 0.7;
}
@media (max-width: 576px) {
  .room_wrap .tabs .tab {
    border-radius: 4px;
    padding: 4px 16px;
  }
}
.room_wrap .tabs .tab.active {
  opacity: 1;
}
.room_wrap .tab-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.room_wrap .tab-content .slide_content_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.room_wrap .tab-content .slide_content_wrap .slide_content {
  margin-left: 32px;
  color: var(--MSC-color-primary-50);
  font-size: 16px;
  line-height: 1.8;
  list-style: disc;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .room_wrap .tab-content .slide_content_wrap .slide_content {
    margin-bottom: 8px;
    font-size: 15px;
  }
}
.room_wrap .tab-content .slide_content_wrap .slide_content_img {
  display: none;
}
.room_wrap .tab-content .slide_content_wrap .slide_content-title {
  color: #fff;
  padding-bottom: 36px;
  text-align: center;
}
@media (max-width: 576px) {
  .room_wrap .tab-content .slide_content_wrap .slide_content-title {
    padding-bottom: 28px;
  }
}
.room_wrap .tab-content .slide_content_wrap h4 {
  font-size: 36px;
  padding-bottom: 8px;
  line-height: 1.5;
}
.room_wrap .tab-content .slide_content_wrap h4::before, .room_wrap .tab-content .slide_content_wrap h4:after {
  content: " - ";
}
@media (max-width: 576px) {
  .room_wrap .tab-content .slide_content_wrap h4 {
    font-size: 22px;
    padding-bottom: 8px;
  }
}
.room_wrap .tab-content .slide_content_wrap h5::before {
  content: "( ";
}
.room_wrap .tab-content .slide_content_wrap h5::after {
  content: " )";
}
.room_wrap .tab-content .slide_content_wrap h5 {
  font-size: 20px;
}
@media (max-width: 576px) {
  .room_wrap .tab-content .slide_content_wrap h5 {
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.room_wrap .tab-content .room_container {
  display: none;
}
.room_wrap .tab-content .room_container[data-active=active] {
  display: block;
}
.room_wrap .tab-content .swiper-container {
  position: relative;
  width: 40%;
  margin: auto;
}
@media (max-width: 768px) {
  .room_wrap .tab-content .swiper-container {
    width: 90%;
  }
}
.room_wrap .tab-content .swiper-container .swiper-wrapper {
  cursor: grab;
  align-items: center;
}
.room_wrap .tab-content .swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  opacity: 0.6;
}
.room_wrap .tab-content .swiper-container .swiper-slide-active {
  opacity: 1;
}
.room_wrap .tab-content .swiper-container .swiper-slide img {
  width: 100%;
}
.room_wrap .tab-content .swiper-container .swiper-button-prev,
.room_wrap .tab-content .swiper-container .swiper-button-next {
  color: var(--MSC-color-primary-50);
}
.room_wrap .tab-content .swiper-container .swiper-button-prev {
  left: -50px !important;
}
@media (max-width: 768px) {
  .room_wrap .tab-content .swiper-container .swiper-button-prev {
    left: -12px !important;
    width: 60px;
    height: auto;
    top: 20px;
    bottom: 0;
    box-sizing: border-box;
  }
}
.room_wrap .tab-content .swiper-container .swiper-button-next {
  right: -50px !important;
}
@media (max-width: 768px) {
  .room_wrap .tab-content .swiper-container .swiper-button-next {
    right: -8px !important;
    width: 60px;
    height: auto;
    top: 20px;
    bottom: 0;
    box-sizing: border-box;
  }
}
.room_wrap canvas {
  opacity: 0.6;
}

.event_title_wrap h3 {
  line-height: 1.5;
}

@media (max-width: 992px) {
  :where(.event_01_wrap, .event_02_wrap, .event_04_wrap) .fee_label {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  :where(.event_01_wrap, .event_02_wrap, .event_04_wrap) .fee_label {
    background-color: #fff !important;
    border: none;
    color: #3D3535 !important;
    padding: 8px 22px 9px 16px !important;
    line-height: 1;
  }
}

@media (max-width: 992px) {
  .event_content_txt h1 {
    font-size: 20px !important;
  }
}
.event_content_txt h3 {
  line-height: 1.5;
}
@media (max-width: 992px) {
  .event_content_txt h3 {
    font-size: 16px !important;
  }
}

.event_content_img img {
  border-radius: 12px;
}

.events_wrap {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 16px;
}
@media (max-width: 1440px) {
  .events_wrap {
    padding: 0 56px 0 40px;
  }
}
@media (max-width: 768px) {
  .events_wrap {
    padding: 0;
  }
}
.events_wrap .event_01_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
.events_wrap .event_01_wrap .event_title_wrap {
  display: flex;
  margin-top: 100px;
  margin-bottom: 42px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .events_wrap .event_01_wrap .event_title_wrap {
    gap: 8px;
    display: grid;
    grid-template-columns: 348px 1fr;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_title_wrap {
    display: flex;
    flex-direction: column;
  }
}
.events_wrap .event_01_wrap .event_title_wrap .event_title {
  width: 348px;
  display: flex;
  flex-direction: column;
  font-size: 48px;
  line-height: 1.5;
  color: var(--MSC-color-primary-50);
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_title_wrap .event_title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_title_wrap .event_title img {
    height: 58px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_title_wrap .event_title {
    width: 100%;
    font-size: 24px;
    align-items: center;
    padding-bottom: 24px;
  }
}
.events_wrap .event_01_wrap .event_title_wrap .event_title_num {
  width: 200px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .events_wrap .event_01_wrap .event_title_wrap .event_title_num {
    width: 144px;
  }
}
.events_wrap .event_01_wrap .event_kv_img {
  width: 1080px;
  height: 570px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 1000px;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9), inset 0 0 100px rgba(0, 0, 0, 0.9);
  background-size: cover;
  background-color: #000;
  background-position: center;
}
@media (max-width: 1440px) {
  .events_wrap .event_01_wrap .event_kv_img {
    border-radius: 128px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_kv_img {
    border-radius: 0;
    height: 400px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_01_wrap .event_kv_img {
    border-radius: 0;
    height: 260px;
    margin-bottom: 0;
  }
}
@media (max-width: 390px) {
  .events_wrap .event_01_wrap .event_kv_img {
    border-radius: 0;
    height: 260px;
  }
}
.events_wrap .event_01_wrap .event_kv_img img {
  width: 100%;
}
.events_wrap .event_01_wrap .event_content_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .events_wrap .event_01_wrap .event_content_wrap {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_content_wrap {
    flex-direction: column;
    padding: 0 12px;
    padding-bottom: 64px;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_01_wrap .event_content_wrap {
    gap: 60px;
  }
}
.events_wrap .event_01_wrap .event_content_wrap .event_content {
  width: 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  .events_wrap .event_01_wrap .event_content_wrap .event_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_content_wrap .event_content {
    width: 100%;
    align-items: center;
  }
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_img {
  position: relative;
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_img img {
  width: 100%;
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt {
  color: var(--MSC-color-primary-50);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt {
    margin-bottom: 0;
  }
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt h1 {
  margin: 16px 0 8px 0;
  font-size: 28px;
}
@media (max-width: 576px) {
  .events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt h1 {
    font-size: 24px;
  }
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt h2 {
  font-size: 16px;
  margin: 0 0 14px 0;
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt h3 {
  font-size: 18px;
}
.events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  font-size: 20px;
  border: #fff 1px solid;
  padding: 12px 24px;
  border-radius: 42px;
}
@media (max-width: 768px) {
  .events_wrap .event_01_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
    font-size: 16px;
    font-family: "Noto Sans TC", sans-serif;
    left: 0;
    position: absolute;
    top: 0;
    border-radius: 0 50px 50px 0;
    margin-top: 18px;
  }
}
.events_wrap .event_02_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
.events_wrap .event_02_wrap .event_title_wrap {
  display: flex;
  margin-top: 100px;
  margin-bottom: 42px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_title_wrap {
    display: grid;
    grid-template-columns: 1fr 348px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_title_wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_02_wrap .event_title_wrap {
    gap: 24px;
    margin-bottom: 24px;
    margin-top: 0;
  }
}
.events_wrap .event_02_wrap .event_title_wrap .event_title {
  width: 348px;
  display: flex;
  flex-direction: column;
  font-size: 48px;
  line-height: 1.5;
  color: var(--MSC-color-primary-50);
  margin-left: 32px;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_title_wrap .event_title {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_title_wrap .event_title {
    width: auto;
    font-size: 24px;
    align-items: center;
    padding-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_02_wrap .event_title_wrap .event_title {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_title_wrap .event_title img {
    height: 58px;
    width: auto;
  }
}
.events_wrap .event_02_wrap .event_title_wrap .event_title_num {
  width: 290px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .events_wrap .event_02_wrap .event_title_wrap .event_title_num {
    width: 144px;
  }
}
.events_wrap .event_02_wrap .event_kv_img {
  width: 1080px;
  height: 570px;
  margin-bottom: 30px;
  border-radius: 1000px;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9), inset 0 0 100px rgba(0, 0, 0, 0.9);
  background-size: cover;
  background-position: center;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_kv_img {
    border-radius: 128px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_kv_img {
    border-radius: 0;
    height: 260px;
    width: 100%;
    background-size: cover;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_02_wrap .event_kv_img {
    margin-bottom: 0;
  }
}
.events_wrap .event_02_wrap .event_kv_img img {
  width: 100%;
}
.events_wrap .event_02_wrap .event_content_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_content_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_content_wrap {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_02_wrap .event_content_wrap {
    margin-bottom: 104px;
    gap: 60px;
  }
}
.events_wrap .event_02_wrap .event_content_wrap .event_content {
  width: 25%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content {
    width: 100%;
  }
}
.events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt {
  color: var(--MSC-color-primary-50);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding: 0 12px;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt {
    margin-bottom: 0;
  }
}
.events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt h1 {
  margin: 16px 0 0 0;
  font-size: 28px;
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt h1 {
    font-size: 24px;
  }
}
.events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt h2 {
  font-size: 16px;
  margin: 0 0 14px 0;
}
.events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt h3 {
  font-size: 18px;
}
.events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  font-size: 20px;
  border: #fff 1px solid;
  padding: 6px 20px;
  border-radius: 42px;
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
    font-size: 16px;
    font-family: "Noto Sans TC", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 50px 50px 0;
    margin-top: 18px;
  }
}
.events_wrap .event_02_wrap .event_content_wrap .event_content_img {
  position: relative;
}
@media (max-width: 1440px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content_img img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_02_wrap .event_content_wrap .event_content_img img {
    width: 100%;
  }
}
.events_wrap .event_03_wrap {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap {
    margin-top: 0;
    flex-direction: column;
  }
}
.events_wrap .event_03_wrap .event_title_wrap {
  width: 25%;
  display: flex;
  margin-top: 100px;
  margin-bottom: 42px;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .events_wrap .event_03_wrap .event_title_wrap {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap {
    width: auto;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_03_wrap .event_title_wrap {
    align-items: center;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.events_wrap .event_03_wrap .event_title_wrap .event_title {
  display: flex;
  flex-direction: column;
  font-size: 48px;
  line-height: 1.5;
  color: var(--MSC-color-primary-50);
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_title {
    align-items: center;
    font-size: 24px;
  }
}
.events_wrap .event_03_wrap .event_title_wrap .event_title_num {
  width: 275px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_title_num {
    width: 144px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_title_num {
    height: 58px;
    width: auto;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_title_num {
    margin-bottom: 24px;
  }
}
.events_wrap .event_03_wrap .event_title_wrap .event_content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt {
  color: var(--MSC-color-primary-50);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt {
    align-items: center;
    margin-bottom: 0;
  }
}
.events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt h1 {
  margin: 16px 0 8px 0;
  font-size: 36px;
}
.events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt h2 {
  font-size: 16px;
  margin: 0 0 14px 0;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt h2 {
    text-align: start;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt h2 {
    text-align: center;
  }
}
.events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt h3 {
  font-size: 18px;
}
.events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt .fee_label {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  font-size: 20px;
  border: #fff 1px solid;
  padding: 12px 24px;
  border-radius: 42px;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_title_wrap .event_content .event_content_txt .fee_label {
    font-size: 16px;
    font-family: "Noto Sans TC", sans-serif;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap {
  width: 70%;
  position: relative;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_carousel_wrap {
    width: 100%;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel {
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_carousel_wrap .event_carousel {
    height: 240px;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .swiper-slide {
  overflow: hidden;
  border-radius: 1000px;
}
@media (max-width: 1200px) {
  .events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .swiper-slide {
    border-radius: 100px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .swiper-slide {
    border-radius: 0;
    height: 240px;
    box-shadow: unset;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .swiper-slide .slide_img {
  width: auto;
  height: 725px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .swiper-slide .slide_img {
    height: 100%;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-next,
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-next {
  right: 20px;
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-prev {
  left: 20px;
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-next::after,
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-prev::after {
  content: "";
  color: var(--MSC-color-primary-50);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-50%, -50%);
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-button-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  margin: 0 5px;
}
@media (max-width: 576px) {
  .events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 2px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #fff;
    background: transparent;
  }
}
.events_wrap .event_03_wrap .event_carousel_wrap .event_carousel .event-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}
.events_wrap .event_04_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
.events_wrap .event_04_wrap .event_title_wrap {
  display: flex;
  margin-top: 100px;
  margin-bottom: 42px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .events_wrap .event_04_wrap .event_title_wrap {
    display: grid;
    grid-template-columns: 1fr 384px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_title_wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_title_wrap {
    margin-bottom: 32px;
  }
}
.events_wrap .event_04_wrap .event_title_wrap .event_title {
  width: 25%;
  display: flex;
  flex-direction: column;
  font-size: 48px;
  line-height: 1.5;
  color: var(--MSC-color-primary-50);
  margin-left: 36px;
}
@media (max-width: 1440px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title {
    width: auto;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title {
    width: 100%;
    align-items: center;
    font-size: 24px;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title {
    margin-bottom: 24px;
  }
}
.events_wrap .event_04_wrap .event_title_wrap .event_title h2 {
  font-size: 36px;
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title h2 {
    font-size: 20px;
  }
}
.events_wrap .event_04_wrap .event_title_wrap .event_title_num {
  width: 280px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title_num {
    width: 144px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_title_wrap .event_title_num {
    height: 58px;
    width: auto;
  }
}
.events_wrap .event_04_wrap .event_kv_img {
  width: 1080px;
  height: 570px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 1000px;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9), inset 0 0 100px rgba(0, 0, 0, 0.9);
  background-size: cover;
}
@media (max-width: 1440px) {
  .events_wrap .event_04_wrap .event_kv_img {
    width: auto;
  }
}
@media (max-width: 992px) {
  .events_wrap .event_04_wrap .event_kv_img {
    border-radius: 100px;
    background-position: center;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_kv_img {
    height: 206px;
    background-position: center;
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_kv_img {
    margin-bottom: 0;
  }
}
.events_wrap .event_04_wrap .event_kv_img img {
  width: 100%;
}
.events_wrap .event_04_wrap .event_content_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .events_wrap .event_04_wrap .event_content_wrap {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_content_wrap {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_content_wrap {
    gap: 60px;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content {
  width: 30%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content {
    width: 100%;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt {
  color: var(--MSC-color-primary-50);
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding: 0 12px;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt {
    margin-bottom: 0;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt h1 {
  margin: 16px 0 0 0;
  font-size: 28px;
}
@media (max-width: 576px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt h1 {
    margin-top: 20px;
    font-size: 24px;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt h2 {
  font-size: 16px;
  margin: 0 0 14px 0;
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt h3 {
  font-size: 18px;
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  font-size: 20px;
  border: #fff 1px solid;
  padding: 6px 20px;
  border-radius: 42px;
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_txt .fee_label {
    font-size: 16px;
    font-family: "Noto Sans TC", sans-serif;
    position: absolute;
    top: 0;
    left: 12px;
    border-radius: 0 50px 50px 0;
    margin-top: 18px;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_img {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (max-width: 768px) {
  .events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_img {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
}
.events_wrap .event_04_wrap .event_content_wrap .event_content .event_content_img img {
  width: 100%;
}

.event_carousel_wrap .swiper-slide-active .slide_img {
  animation: scale 5s ease forwards;
}

@keyframes scale {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(0.99);
  }
}
.child_wrap {
  margin: 0 auto;
  width: 98%;
  padding-bottom: 56px;
  max-width: 1920px;
}
@media (max-width: 768px) {
  .child_wrap {
    width: 100%;
  }
}

.child_facility_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .child_facility_wrap {
    display: flex;
    flex-direction: column;
  }
}
.child_facility_wrap .child_container {
  width: 100%;
  overflow: hidden;
  height: auto;
  border-radius: 200px;
  background-size: cover;
  background-position: center, center;
  position: relative;
}
@media (max-width: 1440px) {
  .child_facility_wrap .child_container {
    border-radius: 120px;
    height: auto;
  }
}
@media (max-width: 1440px) {
  .child_facility_wrap .child_container {
    border-radius: 80px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .child_container {
    height: unset;
    border-radius: unset;
  }
}
@media (min-width: 769px) {
  .child_facility_wrap .child_container:hover .child_content {
    left: 0;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .child_container .child_title {
    overflow: hidden;
  }
  .child_facility_wrap .child_container:first-child .child_title, .child_facility_wrap .child_container:nth-child(3) .child_title {
    border-radius: 16px 16px 0 0;
  }
  .child_facility_wrap .child_container:nth-child(2) .child_title, .child_facility_wrap .child_container:last-child .child_title {
    border-radius: 80px 80px 0px 0px;
  }
}
.child_facility_wrap .child_title {
  width: 100%;
  position: relative;
}
.child_facility_wrap .child_title img {
  height: auto;
  width: 100%;
  display: block;
}
@media (max-width: 1919px) {
  .child_facility_wrap .child_title img {
    height: 460px;
  }
}
@media (max-width: 1440px) {
  .child_facility_wrap .child_title img {
    height: 450px;
    width: auto;
  }
}
@media (max-width: 1200px) {
  .child_facility_wrap .child_title img {
    height: 440px;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .child_title img {
    width: 100%;
    height: auto;
  }
}
.child_facility_wrap .child_title .title {
  width: 12%;
  background: linear-gradient(0deg, rgb(97, 133, 217) 0%, rgb(169, 134, 221) 100%);
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .child_facility_wrap .child_title .title {
    display: none;
  }
}
.child_facility_wrap .title img {
  display: block;
  height: auto;
  width: 32px;
  margin: auto;
}
.child_facility_wrap .child_content {
  color: #fff;
  position: absolute;
  top: 0;
  background: linear-gradient(0deg, rgb(97, 133, 217) 0%, rgb(169, 134, 221) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s;
  left: -100%;
}
@media (max-width: 768px) {
  .child_facility_wrap .child_content {
    width: unset;
    flex-direction: column;
    margin: 0 12px;
    position: relative;
    left: unset;
    top: -16px;
    border-radius: 20px 20px 40px 0px;
    padding: 35px 18px;
    align-items: flex-start;
  }
}
.child_facility_wrap .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  position: relative;
}
@media (max-width: 1440px) {
  .child_facility_wrap .text {
    width: auto;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .text {
    padding: 0;
    padding-top: 10px;
    width: 100%;
    box-sizing: border-box;
  }
}
.child_facility_wrap .text_title {
  font-size: 36px;
  padding-bottom: 24px;
}
@media (max-width: 1440px) {
  .child_facility_wrap .text_title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .text_title {
    font-size: 20px;
  }
}
.child_facility_wrap .status {
  font-size: 16px;
}
.child_facility_wrap .point {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.2235294118);
  margin-bottom: 12px;
  margin-top: 24px;
}
@media (max-width: 1440px) {
  .child_facility_wrap .point {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .point {
    font-size: 18px;
    padding: 8px 8px 0px 8px;
    padding-bottom: 10px;
  }
}
.child_facility_wrap .child_facility_img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  border-right: #fff 1px solid;
}
@media (max-width: 768px) {
  .child_facility_wrap .child_facility_img {
    padding-bottom: 10px;
    width: 100%;
    border: none;
    border-bottom: #fff 1px solid;
    justify-content: flex-start;
    width: 60%;
  }
}
.child_facility_wrap .child_facility_img p {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
}
@media (max-width: 768px) {
  .child_facility_wrap .child_facility_img p {
    writing-mode: unset;
    transform: unset;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap .child_facility_img img {
    transform: rotate(90deg);
  }
}
.child_facility_wrap ul {
  text-align: justify;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .child_facility_wrap ul {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .child_facility_wrap ul {
    font-size: 14px;
    font-family: "Noto Sans CJK TC", "Microsoft JhengHei", PingFang, STHeiti, sans-serif, serif;
    line-height: 32px;
  }
}
.child_facility_wrap li {
  padding-bottom: 12px;
}
@media (max-width: 992px) {
  .child_facility_wrap li {
    padding-bottom: 8px;
  }
}
.child_facility_wrap .child_facility_fee {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  border-radius: 50px;
  border: #fff 1px solid;
  padding: 8px 18px;
  justify-self: end;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .child_facility_wrap .child_facility_fee {
    font-family: "Noto Sans TC", sans-serif;
    padding: 8px 24px;
  }
}

.section-product__wave {
  width: 100%;
  background: linear-gradient(90deg, #0A2E60 0%, #123E7B 19.71%, #123E7B 80.77%, #0A2E60 100%);
  height: 120px;
  -webkit-mask-image: url(./../img/product/wave.svg);
          mask-image: url(./../img/product/wave.svg);
  -webkit-mask-position: center;
          mask-position: center;
}

.section-product {
  background: linear-gradient(90deg, #0A2E60 0%, #123E7B 19.71%, #123E7B 80.77%, #0A2E60 100%);
}
.section-product h1 {
  padding-top: 40px;
  padding-bottom: 60px;
}
.section-product h1 img {
  display: block;
  margin: auto;
}
@media (max-width: 1200px) {
  .section-product h1 img {
    width: 720px;
  }
}
@media (max-width: 768px) {
  .section-product h1 img {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .section-product h1 img {
    width: 100%;
  }
}
.section-product .section-product__wrap {
  max-width: 1196px;
  margin: auto;
}
@media (max-width: 1200px) {
  .section-product .section-product__wrap {
    max-width: unset;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .section-product .section-product__wrap {
    padding: 0 12px;
  }
}
.section-product .product__wrap_anchor {
  display: none;
  gap: 20px;
  justify-content: center;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .section-product .product__wrap_anchor {
    display: flex;
    flex-wrap: wrap;
  }
}
.section-product .product__wrap_anchor a {
  text-decoration: none;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  padding: 8px 28px 10px 28px;
  font-family: "Noto Sans TC";
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-product .product__wrap_anchor a {
    font-size: 15px;
  }
}
.section-product .product__wrap_anchor .button1 {
  color: #123E7B;
  background-color: #fff;
  border: #123D7B 2px solid;
}
.section-product .product__wrap_anchor .button2 {
  color: #fff;
  border: #fff 2px solid;
  background-color: #123E7B;
}
.section-product article {
  padding-bottom: 24px;
}
.section-product article:first-of-type {
  padding-top: 108px;
}
@media (max-width: 768px) {
  .section-product article:first-of-type {
    padding-top: 12%;
  }
}
@media (max-width: 576px) {
  .section-product article:first-of-type {
    padding-top: 110px;
  }
}
.section-product article:last-of-type {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .section-product article:last-of-type {
    padding-top: 110px;
    padding-bottom: 120px;
  }
}
.section-product h2 {
  color: #123E7B;
  background-color: #fff;
  border: #123D7B 4px solid;
  border-radius: 4px;
  box-shadow: #FFDC52 4px 4px 0px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  padding: 14px 106px;
  font-family: "Noto Sans TC";
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .section-product h2 {
    font-size: 20px;
    padding: 12px 40px;
    margin-top: 24px;
  }
}
@media (max-width: 576px) {
  .section-product h2 {
    margin: auto;
  }
}
.section-product .product__list {
  padding-top: 36px;
  padding-left: 36px;
  padding-bottom: 104px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .section-product .product__list {
    padding-top: 24px;
    padding-left: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 960x) {
  .section-product .product__list {
    gap: 16px;
  }
}
.section-product .product-card {
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #000;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #3D3535;
  font-family: "Microsoft JhengHei", PingFang, STHeiti, sans-serif, serif;
  text-decoration: none;
}
@media (max-width: 992px) {
  .section-product .product-card {
    display: block;
  }
}
.section-product .product-card br {
  display: none;
}
.section-product .product__image {
  height: 203px;
  box-sizing: border-box;
  border-radius: 24px 24px 0px 24px;
  overflow: hidden;
  box-shadow: rgba(255, 220, 82, 0.8980392157) 3px 3px 0 0px, #ffffff -10px 9px 0 0px, #113D7B -10px 9px 0 2px;
  margin: 16px 0 28px 30px;
}
@media (max-width: 992px) {
  .section-product .product__image {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-product .product__image {
    display: none;
  }
}
.section-product .product__image img {
  height: 100%;
}
@media (max-width: 992px) {
  .section-product .product__image img {
    height: auto;
    width: 100%;
  }
}
.section-product .product__content {
  margin: 28px 40px 32px 28px;
  position: relative;
}
@media (max-width: 768px) {
  .section-product .product__content {
    margin: 24px 12px 20px 12px;
  }
}
.section-product .product__departure {
  border: 1px solid #3D3535;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 16px 6px 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section-product .product__departure {
    padding: 5px 12px 5px 14px;
  }
}
@media (max-width: 576px) {
  .section-product .product__departure {
    font-size: 12px;
    padding: 5px 8px 5px 8px;
  }
}
.section-product .product__title {
  font-family: "Noto Sans TC", "Microsoft JhengHei", PingFang, STHeiti, sans-serif, serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  padding-top: 16px;
  text-indent: -10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-product .product__title {
    font-size: 20px;
    padding-top: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .section-product .product__title {
    font-size: 18px;
    padding-top: 5px;
  }
}
.section-product .product__info {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  .section-product .product__info {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .section-product .product__info {
    padding-top: 44px;
    gap: 4px;
  }
}
.section-product .product__discount {
  color: #D00003;
  letter-spacing: 1px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.section-product .product__discount:empty {
  display: none;
}
.section-product .product__discount::before {
  content: "";
  width: 22px;
  height: 17px;
  background-image: url(./../img/icon/product__discount.png);
  background-repeat: no-repeat;
  background-position: center -1px;
}
@media (max-width: 576px) {
  .section-product .product__discount::before {
    background-position: center -2px;
  }
}
.section-product .product__point {
  color: #3D3535;
  letter-spacing: 1px;
  padding: 6px 16px 5px 1px;
  display: flex;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.section-product .product__point:empty {
  display: none;
}
@media (max-width: 576px) {
  .section-product .product__point {
    padding: 6px 16px 1px 1px;
  }
}
.section-product .product__point::before {
  content: "";
  width: 22px;
  height: 17px;
  background-image: url(./../img/icon/product__point.png);
  background-repeat: no-repeat;
  background-position: 3px center;
  padding-top: 2px;
}
.section-product .product__point::after {
  content: "出發";
}
.section-product .product__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  align-items: center;
}
@media (max-width: 1200px) {
  .section-product .product__meta {
    padding-top: 28px;
    position: unset;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .section-product .product__meta {
    gap: 8px;
    padding-top: 16px;
  }
}
.section-product .trip-summary {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.section-product .product__duration {
  font-size: 20px;
  font-family: "Noto Sans TC";
}
@media (max-width: 576px) {
  .section-product .product__duration {
    font-size: 17px;
  }
}
.section-product .product__price {
  font-size: 28px;
  color: #103A74;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
@media (max-width: 768px) {
  .section-product .product__price {
    font-size: 24px;
    gap: 4px;
    padding-right: 8px;
  }
}
.section-product .product__price::before {
  content: "$";
  color: #3D3535;
  font-size: 0.85714em;
  font-weight: normal;
}
.section-product .product__price::after {
  content: "起";
  color: #3D3535;
  font-size: 0.85714em;
  font-weight: normal;
  font-family: "Noto Sans TC";
}
.section-product .product__buttonGroup {
  display: flex;
  gap: 4px;
}
@media (max-width: 768px) {
  .section-product .product__buttonGroup {
    gap: 0;
    position: absolute;
    bottom: 36px;
  }
}
.section-product .product__check {
  font-size: 14px;
  padding: 2px 8px 1px 8px;
  border: 1px solid #DDD;
  background-color: unset;
  border-radius: 4px;
  color: #3D3535;
  cursor: pointer;
}
@media (max-width: 768px) {
  .section-product .product__check {
    font-size: 12px;
  }
}
.section-product .favorite-button {
  border: none;
  padding: 8px 12px;
  background-color: transparent;
  font-size: 16px;
  font-family: "Noto Sans TC";
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #3D3535;
}
@media (max-width: 768px) {
  .section-product .favorite-button {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .section-product .favorite-button {
    padding: 4px 8px 5px 8px;
    bottom: 32px;
  }
}
.section-product .favorite-button svg {
  padding-top: 4px;
}
@media (max-width: 576px) {
  .section-product .favorite-button svg {
    height: 16px;
  }
}
.section-product .favorite-button.compare_0:hover {
  background-color: rgba(128, 128, 128, 0.068);
}
.section-product .favorite-button.compare_1 svg {
  fill: #FF9500;
  stroke-width: 1px;
}
.section-product .favorite-button.compare_1 svg path {
  stroke: #FF9500;
}
.section-product .product__list li:has(.product__title:empty) {
  display: none;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
  margin: 60px auto;
  display: none;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #fff, -20px 0 rgba(255, 255, 255, 0.1333333333);
    background: #fff;
  }
  33% {
    box-shadow: 20px 0 #fff, -20px 0 rgba(255, 255, 255, 0.1333333333);
    background: rgba(255, 255, 255, 0.1333333333);
  }
  66% {
    box-shadow: 20px 0 rgba(255, 255, 255, 0.1333333333), -20px 0 #fff;
    background: rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    box-shadow: 20px 0 rgba(255, 255, 255, 0.1333333333), -20px 0 #fff;
    background: #fff;
  }
}
body.bbc .topbanner {
  height: 53px;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px;
  box-sizing: border-box;
}
body.bbc .topbanner img {
  height: 100%;
}
body.bbc .favorite-button {
  display: none !important;
}/*# sourceMappingURL=style.css.map */