.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-55d05bbc-289a-40dc-acad-d8b610bd144b {
  min-height: 50px;
}








#s-55d05bbc-289a-40dc-acad-d8b610bd144b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55d05bbc-289a-40dc-acad-d8b610bd144b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8559976-fe4e-4205-a8aa-99181a2ba4c0 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 20px;
padding-left: 0%;
padding-bottom: 20px;
padding-right: 0%;
background-position: center center;
}
@media (min-width: 1200px){#s-e8559976-fe4e-4205-a8aa-99181a2ba4c0 {
  
}
}







#s-e8559976-fe4e-4205-a8aa-99181a2ba4c0 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-e8559976-fe4e-4205-a8aa-99181a2ba4c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-320b23c6-30cf-4b27-8bc6-78a683ad2fbd {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-320b23c6-30cf-4b27-8bc6-78a683ad2fbd {
  
}
}






  #s-320b23c6-30cf-4b27-8bc6-78a683ad2fbd img.shogun-image {
    

    
    
    
  }


#s-320b23c6-30cf-4b27-8bc6-78a683ad2fbd .shogun-image-content {
  
    align-items: center;
  
}

#s-4d2c46d1-1cd3-4ebb-b86f-6806ef7b6764 {
  min-height: 50px;
background-color: rgba(178, 236, 239, 1);
}








#s-4d2c46d1-1cd3-4ebb-b86f-6806ef7b6764 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d2c46d1-1cd3-4ebb-b86f-6806ef7b6764.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-048bacc9-791c-452c-b4c3-630592a7b8bc {
  min-height: 50px;
}








#s-048bacc9-791c-452c-b4c3-630592a7b8bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-048bacc9-791c-452c-b4c3-630592a7b8bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26da48da-79fc-4e47-9027-d91ace950374 {
  min-height: 50px;
}








#s-26da48da-79fc-4e47-9027-d91ace950374 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26da48da-79fc-4e47-9027-d91ace950374.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4aa17854-1e73-4779-acf8-ed039f742b9f {
  text-align: center;
}







  #s-4aa17854-1e73-4779-acf8-ed039f742b9f img.shogun-image {
    

    
    
    
  }


#s-4aa17854-1e73-4779-acf8-ed039f742b9f .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-ecbc6d7b-faca-4c9c-8a46-119c91419597 {
  text-align: center;
}
@media (max-width: 767px){#s-ecbc6d7b-faca-4c9c-8a46-119c91419597 {
  margin-bottom: -10px;
}
}
#s-ecbc6d7b-faca-4c9c-8a46-119c91419597 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 50px;
  line-height: 1.2em;
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ecbc6d7b-faca-4c9c-8a46-119c91419597 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.2em;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-ecbc6d7b-faca-4c9c-8a46-119c91419597 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.3em;
  letter-spacing: 2px;
  
}


}
.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-265f2678-26ac-48e6-acfe-d6afddce2bc9 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-265f2678-26ac-48e6-acfe-d6afddce2bc9 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-265f2678-26ac-48e6-acfe-d6afddce2bc9 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-265f2678-26ac-48e6-acfe-d6afddce2bc9 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-265f2678-26ac-48e6-acfe-d6afddce2bc9 {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-ddc3202b-589b-4ca9-aed0-fa0a9c88d2a1 {
  text-align: center;
}







  #s-ddc3202b-589b-4ca9-aed0-fa0a9c88d2a1 img.shogun-image {
    

    
    
    
  }


#s-ddc3202b-589b-4ca9-aed0-fa0a9c88d2a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-027fcb13-a612-4d0d-965a-d16c259e5133 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-027fcb13-a612-4d0d-965a-d16c259e5133 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-027fcb13-a612-4d0d-965a-d16c259e5133.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79196bea-70a4-47b6-a22e-99053906c460 {
  text-align: center;
}







  #s-79196bea-70a4-47b6-a22e-99053906c460 img.shogun-image {
    

    
    
    
  }


#s-79196bea-70a4-47b6-a22e-99053906c460 .shogun-image-content {
  
    align-items: center;
  
}

#s-cb9031f9-7a45-42b3-891f-908a0995ed4f {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(178, 236, 238, 1);
}








#s-cb9031f9-7a45-42b3-891f-908a0995ed4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb9031f9-7a45-42b3-891f-908a0995ed4f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba2eb03b-c1c6-462a-9aba-c2cbf3598b31 {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-ba2eb03b-c1c6-462a-9aba-c2cbf3598b31 {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-ba2eb03b-c1c6-462a-9aba-c2cbf3598b31 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ba2eb03b-c1c6-462a-9aba-c2cbf3598b31 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-ba2eb03b-c1c6-462a-9aba-c2cbf3598b31 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-3700caf1-5e65-4e62-8690-d8f92e6c091b {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3700caf1-5e65-4e62-8690-d8f92e6c091b {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3700caf1-5e65-4e62-8690-d8f92e6c091b {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-3700caf1-5e65-4e62-8690-d8f92e6c091b {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-3700caf1-5e65-4e62-8690-d8f92e6c091b img.shogun-image {
    

    
    
    
  }


#s-3700caf1-5e65-4e62-8690-d8f92e6c091b .shogun-image-content {
  
    align-items: center;
  
}

#s-3f29f948-edb2-4d31-89c8-688427f086d3 {
  text-align: center;
}







  #s-3f29f948-edb2-4d31-89c8-688427f086d3 img.shogun-image {
    

    
    
    
  }


#s-3f29f948-edb2-4d31-89c8-688427f086d3 .shogun-image-content {
  
    align-items: center;
  
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-968ffbcb-432c-40a1-b563-4cfaa37fdc03 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-968ffbcb-432c-40a1-b563-4cfaa37fdc03"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-0fc46c0e-c1d3-4be1-ad25-078cd9b96fb5 {
  text-align: center;
}







  #s-0fc46c0e-c1d3-4be1-ad25-078cd9b96fb5 img.shogun-image {
    

    
    
    
  }


#s-0fc46c0e-c1d3-4be1-ad25-078cd9b96fb5 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 td.shogun-table-column, #s-dd4c2aa4-0030-482f-8c8d-9a122ea01998 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-280d8f8c-bd2e-476f-89ef-96147f17a2d4 {
  text-align: center;
}







  #s-280d8f8c-bd2e-476f-89ef-96147f17a2d4 img.shogun-image {
    

    
    
    
  }


#s-280d8f8c-bd2e-476f-89ef-96147f17a2d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-65b8c525-d043-4d06-91f5-35a01cdb9fdc {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(71, 188, 198, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(71, 188, 198, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}@media (max-width: 767px){#s-6d93aa5e-0f81-4098-aaef-389f4c7d2d02 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 1px;
  
}


}
#s-d315e10c-39dd-49ac-bbc2-5ac887979c17 {
  margin-bottom: -13px;
text-align: center;
}

#s-d315e10c-39dd-49ac-bbc2-5ac887979c17 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 35px;
  line-height: 0.8em;
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-d315e10c-39dd-49ac-bbc2-5ac887979c17 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d315e10c-39dd-49ac-bbc2-5ac887979c17 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  line-height: 0.8em;
  
  
}


}@media (max-width: 767px){#s-d315e10c-39dd-49ac-bbc2-5ac887979c17 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.3em;
  
  
}


}
#s-f5004764-a9b4-44da-b253-33fba0f9f439 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-f5004764-a9b4-44da-b253-33fba0f9f439 {
  margin-top: 0px;
}
}






  #s-f5004764-a9b4-44da-b253-33fba0f9f439 img.shogun-image {
    

    
    
    
  }


#s-f5004764-a9b4-44da-b253-33fba0f9f439 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9347770-4792-49ab-9047-c117357b153f {
  margin-bottom: 1%;
min-height: 50px;
}








#s-e9347770-4792-49ab-9047-c117357b153f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9347770-4792-49ab-9047-c117357b153f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8d50baa-b9a3-4466-ae26-7f4158684e35 {
  text-align: center;
}







  #s-e8d50baa-b9a3-4466-ae26-7f4158684e35 img.shogun-image {
    

    
    
    
  }


#s-e8d50baa-b9a3-4466-ae26-7f4158684e35 .shogun-image-content {
  
    align-items: center;
  
}

#s-63a415a2-2e74-4282-8b62-eb13a337c26e {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-63a415a2-2e74-4282-8b62-eb13a337c26e {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-63a415a2-2e74-4282-8b62-eb13a337c26e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63a415a2-2e74-4282-8b62-eb13a337c26e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63a415a2-2e74-4282-8b62-eb13a337c26e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63a415a2-2e74-4282-8b62-eb13a337c26e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4f7055ff-9595-4f51-b4a2-f4554b8224f7 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4f7055ff-9595-4f51-b4a2-f4554b8224f7 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-4f7055ff-9595-4f51-b4a2-f4554b8224f7 {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-4f7055ff-9595-4f51-b4a2-f4554b8224f7 img.shogun-image {
    

    
    
    
  }


#s-4f7055ff-9595-4f51-b4a2-f4554b8224f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-625afe71-10e5-4a27-9467-a64f704d22a1 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 {
  margin-top: 50px;
text-align: center;
}
}
#s-625afe71-10e5-4a27-9467-a64f704d22a1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-625afe71-10e5-4a27-9467-a64f704d22a1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-44aec54c-467e-46bc-b94c-2ac439674bbb {
  text-align: left;
}
@media (max-width: 767px){#s-44aec54c-467e-46bc-b94c-2ac439674bbb {
  margin-bottom: -30px;
}
}
#s-44aec54c-467e-46bc-b94c-2ac439674bbb .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-44aec54c-467e-46bc-b94c-2ac439674bbb .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-44aec54c-467e-46bc-b94c-2ac439674bbb .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-940f5247-f708-424b-9552-91f8f66d3e6f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-940f5247-f708-424b-9552-91f8f66d3e6f {
  display: none;
}
#s-940f5247-f708-424b-9552-91f8f66d3e6f, #wrap-s-940f5247-f708-424b-9552-91f8f66d3e6f { display: none !important; }}@media (max-width: 767px){#s-940f5247-f708-424b-9552-91f8f66d3e6f {
  display: none;
}
#s-940f5247-f708-424b-9552-91f8f66d3e6f, #wrap-s-940f5247-f708-424b-9552-91f8f66d3e6f { display: none !important; }}






  #s-940f5247-f708-424b-9552-91f8f66d3e6f img.shogun-image {
    

    
    
    
  }


#s-940f5247-f708-424b-9552-91f8f66d3e6f .shogun-image-content {
  
    align-items: center;
  
}

#s-a20aa857-7488-4af4-a37c-3210b5e167c5 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-a20aa857-7488-4af4-a37c-3210b5e167c5 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-a20aa857-7488-4af4-a37c-3210b5e167c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a20aa857-7488-4af4-a37c-3210b5e167c5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a20aa857-7488-4af4-a37c-3210b5e167c5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a20aa857-7488-4af4-a37c-3210b5e167c5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-a20aa857-7488-4af4-a37c-3210b5e167c5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d59e1157-349d-4ade-9d9e-f5492644b913 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-d59e1157-349d-4ade-9d9e-f5492644b913 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-d59e1157-349d-4ade-9d9e-f5492644b913 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-ec1a429e-80f3-40ff-9add-ac086c6456c4 {
  text-align: left;
}
@media (max-width: 767px){#s-ec1a429e-80f3-40ff-9add-ac086c6456c4 {
  margin-bottom: -30px;
}
}
#s-ec1a429e-80f3-40ff-9add-ac086c6456c4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ec1a429e-80f3-40ff-9add-ac086c6456c4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-ec1a429e-80f3-40ff-9add-ac086c6456c4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 {
  display: none;
}
#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4, #wrap-s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 { display: none !important; }}@media (max-width: 767px){#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 {
  display: none;
}
#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4, #wrap-s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 { display: none !important; }}






  #s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 img.shogun-image {
    

    
    
    
  }


#s-4bf4cc97-0cc7-4f51-b7d0-fde1a0dca3c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-a4445b10-34ea-401e-b359-198291f859a6 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a4445b10-34ea-401e-b359-198291f859a6 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-a4445b10-34ea-401e-b359-198291f859a6 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-a4445b10-34ea-401e-b359-198291f859a6 img.shogun-image {
    

    
    
    
  }


#s-a4445b10-34ea-401e-b359-198291f859a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-74d529f7-7490-4d44-b175-c9f2ba431205 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-74d529f7-7490-4d44-b175-c9f2ba431205 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-74d529f7-7490-4d44-b175-c9f2ba431205"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74d529f7-7490-4d44-b175-c9f2ba431205"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-74d529f7-7490-4d44-b175-c9f2ba431205"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-74d529f7-7490-4d44-b175-c9f2ba431205"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b500dfc9-7623-44db-a273-8f7eb09e1e0c {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b500dfc9-7623-44db-a273-8f7eb09e1e0c {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-b500dfc9-7623-44db-a273-8f7eb09e1e0c {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-b500dfc9-7623-44db-a273-8f7eb09e1e0c img.shogun-image {
    

    
    
    
  }


#s-b500dfc9-7623-44db-a273-8f7eb09e1e0c .shogun-image-content {
  
    align-items: center;
  
}

#s-de405af8-d676-4c60-8788-783482c1d5b3 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-de405af8-d676-4c60-8788-783482c1d5b3 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-de405af8-d676-4c60-8788-783482c1d5b3 {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-de405af8-d676-4c60-8788-783482c1d5b3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-de405af8-d676-4c60-8788-783482c1d5b3 {
  margin-top: 50px;
text-align: center;
}
}
#s-de405af8-d676-4c60-8788-783482c1d5b3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 992px) and (max-width: 1199px){#s-de405af8-d676-4c60-8788-783482c1d5b3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-de405af8-d676-4c60-8788-783482c1d5b3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-de405af8-d676-4c60-8788-783482c1d5b3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 23px;
  line-height: 1em;
  
  text-align: center;
}


}
#s-ccc82a3d-254d-44cf-be17-be6c569ecf3f {
  text-align: left;
}
@media (max-width: 767px){#s-ccc82a3d-254d-44cf-be17-be6c569ecf3f {
  margin-bottom: -30px;
}
}
#s-ccc82a3d-254d-44cf-be17-be6c569ecf3f .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ccc82a3d-254d-44cf-be17-be6c569ecf3f .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-ccc82a3d-254d-44cf-be17-be6c569ecf3f .shogun-heading-component h3 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a {
  display: none;
}
#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a, #wrap-s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a { display: none !important; }}@media (max-width: 767px){#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a {
  display: none;
}
#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a, #wrap-s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a { display: none !important; }}






  #s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a img.shogun-image {
    

    
    
    
  }


#s-df42af1e-abe7-4cdb-a519-2bed3c2c1b9a .shogun-image-content {
  
    align-items: center;
  
}

#s-a9931a1d-6681-408a-abc7-94c6298f7d14 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-a9931a1d-6681-408a-abc7-94c6298f7d14 {
  padding-top: 10px;
}
}






  #s-a9931a1d-6681-408a-abc7-94c6298f7d14 img.shogun-image {
    

    
    
    
  }


#s-a9931a1d-6681-408a-abc7-94c6298f7d14 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be43295c-51f2-42d5-9d79-0e7b5e5d8a32"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-86fe3ed0-f825-43a5-9075-85b67178401d {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-86fe3ed0-f825-43a5-9075-85b67178401d .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-86fe3ed0-f825-43a5-9075-85b67178401d table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-86fe3ed0-f825-43a5-9075-85b67178401d td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-86fe3ed0-f825-43a5-9075-85b67178401d td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-86fe3ed0-f825-43a5-9075-85b67178401d td.shogun-table-column, #s-86fe3ed0-f825-43a5-9075-85b67178401d td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-12f1a455-bcac-40de-9d72-eb9193a1d3e4 {
  text-align: center;
}







  #s-12f1a455-bcac-40de-9d72-eb9193a1d3e4 img.shogun-image {
    

    
    
    
  }


#s-12f1a455-bcac-40de-9d72-eb9193a1d3e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1.3em;
  
  text-align: left;
}


@media (max-width: 767px){#s-d2e2a8a1-8933-4c2a-9592-89d941acb23f .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-c777300c-9b6b-4a22-853b-6047b645c86b {
  text-align: center;
}







  #s-c777300c-9b6b-4a22-853b-6047b645c86b img.shogun-image {
    

    
    
    
  }


#s-c777300c-9b6b-4a22-853b-6047b645c86b .shogun-image-content {
  
    align-items: center;
  
}

#s-412f2dc9-75a0-45e0-b280-85574b7c07ca {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-412f2dc9-75a0-45e0-b280-85574b7c07ca {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-412f2dc9-75a0-45e0-b280-85574b7c07ca {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-412f2dc9-75a0-45e0-b280-85574b7c07ca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-412f2dc9-75a0-45e0-b280-85574b7c07ca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-412f2dc9-75a0-45e0-b280-85574b7c07ca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-412f2dc9-75a0-45e0-b280-85574b7c07ca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-8d60f2bb-f4ec-49dd-be04-0e13f702b281 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8d60f2bb-f4ec-49dd-be04-0e13f702b281 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-8d60f2bb-f4ec-49dd-be04-0e13f702b281 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-8d60f2bb-f4ec-49dd-be04-0e13f702b281 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-8d60f2bb-f4ec-49dd-be04-0e13f702b281 .shogun-heading-component h6 {
  color: #000;
  font-weight:  100 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  
  
}


}
#s-a29f9219-2851-4d96-b0bd-eb0a63eedbf6 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-a29f9219-2851-4d96-b0bd-eb0a63eedbf6 img.shogun-image {
    

    
    
    
  }


#s-a29f9219-2851-4d96-b0bd-eb0a63eedbf6 .shogun-image-content {
  
    align-items: center;
  
}

#s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-878b9e3d-a5b8-41e8-ab2c-6217028ea88e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-eab1cdac-19f8-40d0-a55f-68b954bf7961 {
  border-style: solid;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-eab1cdac-19f8-40d0-a55f-68b954bf7961 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-eab1cdac-19f8-40d0-a55f-68b954bf7961 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-eab1cdac-19f8-40d0-a55f-68b954bf7961 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-eab1cdac-19f8-40d0-a55f-68b954bf7961 img.shogun-image {
    

    
    
    
  }


#s-eab1cdac-19f8-40d0-a55f-68b954bf7961 .shogun-image-content {
  
    align-items: center;
  
}

#s-3a923da6-dac2-4b88-a435-985991be9289 {
  margin-top: 10px;
margin-left: 28px;
margin-bottom: 10px;
margin-right: 28px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-3a923da6-dac2-4b88-a435-985991be9289 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-3a923da6-dac2-4b88-a435-985991be9289 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-3a923da6-dac2-4b88-a435-985991be9289 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-8122ccf2-15f6-481a-8ad9-85c3e9ee5f32 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-8122ccf2-15f6-481a-8ad9-85c3e9ee5f32 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-803b6f9d-1f65-4c74-956b-bdbf1752094f {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-803b6f9d-1f65-4c74-956b-bdbf1752094f {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-803b6f9d-1f65-4c74-956b-bdbf1752094f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-076df4b1-30d5-49e8-8ff0-a7282066a75d {
  border-style: solid;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: #2C2A34;
border-radius: 15px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-076df4b1-30d5-49e8-8ff0-a7282066a75d {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-076df4b1-30d5-49e8-8ff0-a7282066a75d {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-076df4b1-30d5-49e8-8ff0-a7282066a75d {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-076df4b1-30d5-49e8-8ff0-a7282066a75d img.shogun-image {
    

    
    
    
  }


#s-076df4b1-30d5-49e8-8ff0-a7282066a75d .shogun-image-content {
  
    align-items: center;
  
}

#s-3ac6be23-d775-4526-85e0-bc24960b14ab {
  margin-top: 10px;
margin-left: 28px;
margin-bottom: 10px;
margin-right: 28px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-3ac6be23-d775-4526-85e0-bc24960b14ab {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-3ac6be23-d775-4526-85e0-bc24960b14ab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-3ac6be23-d775-4526-85e0-bc24960b14ab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-80991127-d18d-450d-9058-3da4933ed355 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-80991127-d18d-450d-9058-3da4933ed355 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-0670eb6b-36a1-4e21-a452-623c06e723a9 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-0670eb6b-36a1-4e21-a452-623c06e723a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0670eb6b-36a1-4e21-a452-623c06e723a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20dfe60c-7551-4bc3-b053-479a4f4eec8c {
  text-align: left;
}

#s-20dfe60c-7551-4bc3-b053-479a4f4eec8c .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-20dfe60c-7551-4bc3-b053-479a4f4eec8c .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-678dd4df-afa7-4d97-8078-2ae6a338babb {
  text-align: left;
}

#s-678dd4df-afa7-4d97-8078-2ae6a338babb .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-678dd4df-afa7-4d97-8078-2ae6a338babb .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-df473450-28ca-451d-882c-2654125699f0 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-df473450-28ca-451d-882c-2654125699f0 img.shogun-image {
    

    
    
    
  }


#s-df473450-28ca-451d-882c-2654125699f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-999b3770-6c88-4edf-a672-bbdab22a1a56 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-999b3770-6c88-4edf-a672-bbdab22a1a56 img.shogun-image {
    

    
    
    
  }


#s-999b3770-6c88-4edf-a672-bbdab22a1a56 .shogun-image-content {
  
    align-items: center;
  
}

#s-fca0e93d-afa0-414e-aeef-1a9f67ba05de {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-fca0e93d-afa0-414e-aeef-1a9f67ba05de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fca0e93d-afa0-414e-aeef-1a9f67ba05de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69d26bd8-17e2-453c-98b4-ac9e4bb64122 {
  text-align: left;
}

#s-69d26bd8-17e2-453c-98b4-ac9e4bb64122 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-69d26bd8-17e2-453c-98b4-ac9e4bb64122 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Noto Sans HK";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-e4f25151-1280-4830-8255-99c4ac42a40a {
  text-align: left;
}

#s-e4f25151-1280-4830-8255-99c4ac42a40a .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-e4f25151-1280-4830-8255-99c4ac42a40a .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-8773084b-378b-4292-8427-2c622d795019 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8773084b-378b-4292-8427-2c622d795019 .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  
}


@media (max-width: 767px){#s-8773084b-378b-4292-8427-2c622d795019 .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-89030418-91ba-4954-81bf-103d808063f8 {
  text-align: left;
}

#s-89030418-91ba-4954-81bf-103d808063f8 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-89030418-91ba-4954-81bf-103d808063f8 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-ccc3aa50-a8ac-45f8-8c98-59cce2d349c7 {
  text-align: left;
}

#s-ccc3aa50-a8ac-45f8-8c98-59cce2d349c7 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-ccc3aa50-a8ac-45f8-8c98-59cce2d349c7 .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-eb769a08-3b4c-4dba-a815-d8fe952fb48f {
  text-align: center;
}







  #s-eb769a08-3b4c-4dba-a815-d8fe952fb48f img.shogun-image {
    

    
    
    
  }


#s-eb769a08-3b4c-4dba-a815-d8fe952fb48f .shogun-image-content {
  
    align-items: center;
  
}

#s-084e478e-6df2-427e-bf75-c9e86a3d2b4d {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-084e478e-6df2-427e-bf75-c9e86a3d2b4d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-084e478e-6df2-427e-bf75-c9e86a3d2b4d {
  
}
}@media (max-width: 767px){#s-084e478e-6df2-427e-bf75-c9e86a3d2b4d {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-084e478e-6df2-427e-bf75-c9e86a3d2b4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-084e478e-6df2-427e-bf75-c9e86a3d2b4d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-084e478e-6df2-427e-bf75-c9e86a3d2b4d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-084e478e-6df2-427e-bf75-c9e86a3d2b4d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-d4672b08-c3c9-4e27-bafb-112d72030982 {
  text-align: center;
}
@media (max-width: 767px){#s-d4672b08-c3c9-4e27-bafb-112d72030982 {
  margin-left: 40px;
margin-right: 40px;
}
}






  #s-d4672b08-c3c9-4e27-bafb-112d72030982 img.shogun-image {
    

    
    
    
  }


#s-d4672b08-c3c9-4e27-bafb-112d72030982 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd919ad5-eecd-4bf0-bd9e-93d8e3d0c0c5 {
  text-align: center;
}
@media (max-width: 767px){#s-bd919ad5-eecd-4bf0-bd9e-93d8e3d0c0c5 {
  margin-left: 40px;
margin-right: 40px;
}
}






  #s-bd919ad5-eecd-4bf0-bd9e-93d8e3d0c0c5 img.shogun-image {
    

    
    
    
  }


#s-bd919ad5-eecd-4bf0-bd9e-93d8e3d0c0c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-a2138d89-0c1e-4db6-8f98-e8593f901ec9 {
  margin-top: 14px;
text-align: center;
}







  #s-a2138d89-0c1e-4db6-8f98-e8593f901ec9 img.shogun-image {
    

    
    
    
  }


#s-a2138d89-0c1e-4db6-8f98-e8593f901ec9 .shogun-image-content {
  
    align-items: center;
  
}

#s-19b7981f-9f08-4c35-9430-e2d378689be7 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-19b7981f-9f08-4c35-9430-e2d378689be7 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-19b7981f-9f08-4c35-9430-e2d378689be7 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-19b7981f-9f08-4c35-9430-e2d378689be7 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-dde0ad4a-0044-4c75-acea-35ca3fbfdd9d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-dde0ad4a-0044-4c75-acea-35ca3fbfdd9d {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-dde0ad4a-0044-4c75-acea-35ca3fbfdd9d .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-dde0ad4a-0044-4c75-acea-35ca3fbfdd9d .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-878fdb2d-3339-44cb-8ce1-16a057394ca7 {
  min-height: 50px;
}








#s-878fdb2d-3339-44cb-8ce1-16a057394ca7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-878fdb2d-3339-44cb-8ce1-16a057394ca7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4e0f12d-a6d8-43a3-81d9-16b65ce7c723 {
  text-align: center;
}







  #s-f4e0f12d-a6d8-43a3-81d9-16b65ce7c723 img.shogun-image {
    

    
    
    
  }


#s-f4e0f12d-a6d8-43a3-81d9-16b65ce7c723 .shogun-image-content {
  
    align-items: center;
  
}

#s-9c3e43f7-b61f-4e87-8244-25f47e30b4cc {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-9c3e43f7-b61f-4e87-8244-25f47e30b4cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c3e43f7-b61f-4e87-8244-25f47e30b4cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c46aa9f5-02c9-406f-a00d-42a7a8fb91d7 {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-c46aa9f5-02c9-406f-a00d-42a7a8fb91d7 .shogun-heading-component h6 {
  color: rgba(134, 85, 65, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-c46aa9f5-02c9-406f-a00d-42a7a8fb91d7 .shogun-heading-component h6 {
  color: rgba(134, 85, 65, 1);
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-be69a61a-9d05-4698-b023-c3cb0697a2f7 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-be69a61a-9d05-4698-b023-c3cb0697a2f7 img.shogun-image {
    

    
    
    
  }


#s-be69a61a-9d05-4698-b023-c3cb0697a2f7 .shogun-image-content {
  
    align-items: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
