.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-9f7ce311-7853-4a30-bc27-b465876fdce0 {
  min-height: 50px;
}








#s-9f7ce311-7853-4a30-bc27-b465876fdce0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f7ce311-7853-4a30-bc27-b465876fdce0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cdb725d5-38f6-4035-9ef9-8998c915195b {
  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-cdb725d5-38f6-4035-9ef9-8998c915195b {
  
}
}







#s-cdb725d5-38f6-4035-9ef9-8998c915195b > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-cdb725d5-38f6-4035-9ef9-8998c915195b.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-a6eabf02-e3a5-4565-ad3b-77db2a937918 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-a6eabf02-e3a5-4565-ad3b-77db2a937918 {
  
}
}






  #s-a6eabf02-e3a5-4565-ad3b-77db2a937918 img.shogun-image {
    

    
    
    
  }


#s-a6eabf02-e3a5-4565-ad3b-77db2a937918 .shogun-image-content {
  
    align-items: center;
  
}

#s-38936853-677e-480d-beb8-12fd486a7170 {
  min-height: 50px;
background-color: rgba(177, 227, 252, 1);
}








#s-38936853-677e-480d-beb8-12fd486a7170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38936853-677e-480d-beb8-12fd486a7170.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8789c8dd-aeb7-4c55-b7de-cbcda8cd3a66 {
  min-height: 50px;
}








#s-8789c8dd-aeb7-4c55-b7de-cbcda8cd3a66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8789c8dd-aeb7-4c55-b7de-cbcda8cd3a66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47688255-1012-4b66-96b5-3009ad93614b {
  min-height: 50px;
}








#s-47688255-1012-4b66-96b5-3009ad93614b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47688255-1012-4b66-96b5-3009ad93614b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26461dfd-7404-4217-86c9-3c0bdf3aa11c {
  text-align: center;
}







  #s-26461dfd-7404-4217-86c9-3c0bdf3aa11c img.shogun-image {
    

    
    
    
  }


#s-26461dfd-7404-4217-86c9-3c0bdf3aa11c .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-e7ea1b91-ec04-4d95-8136-c90ce8f74460 {
  text-align: center;
}

#s-e7ea1b91-ec04-4d95-8136-c90ce8f74460 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e7ea1b91-ec04-4d95-8136-c90ce8f74460 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-e7ea1b91-ec04-4d95-8136-c90ce8f74460 .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}


}
#s-d83aea97-3eb4-4ad7-bc05-bf9eeb4e19bf {
  text-align: center;
}
@media (max-width: 767px){#s-d83aea97-3eb4-4ad7-bc05-bf9eeb4e19bf {
  margin-bottom: -10px;
}
}
#s-d83aea97-3eb4-4ad7-bc05-bf9eeb4e19bf .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-d83aea97-3eb4-4ad7-bc05-bf9eeb4e19bf .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.2em;
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-d83aea97-3eb4-4ad7-bc05-bf9eeb4e19bf .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.2em;
  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-0b45c047-4668-45df-bf3c-4bd1c29ae8b7 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-0b45c047-4668-45df-bf3c-4bd1c29ae8b7 {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0b45c047-4668-45df-bf3c-4bd1c29ae8b7 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0b45c047-4668-45df-bf3c-4bd1c29ae8b7 {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-0b45c047-4668-45df-bf3c-4bd1c29ae8b7 {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-a60e1e14-bd6d-4c19-85d3-d6ddf2b4cc5e {
  text-align: center;
}







  #s-a60e1e14-bd6d-4c19-85d3-d6ddf2b4cc5e img.shogun-image {
    

    
    
    
  }


#s-a60e1e14-bd6d-4c19-85d3-d6ddf2b4cc5e .shogun-image-content {
  
    align-items: center;
  
}

#s-2dfc425a-8fac-4d12-895e-bc8de7ab6fe3 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-2dfc425a-8fac-4d12-895e-bc8de7ab6fe3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dfc425a-8fac-4d12-895e-bc8de7ab6fe3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-348fb372-4f58-440e-8034-ead66eef1008 {
  text-align: center;
}







  #s-348fb372-4f58-440e-8034-ead66eef1008 img.shogun-image {
    

    
    
    
  }


#s-348fb372-4f58-440e-8034-ead66eef1008 .shogun-image-content {
  
    align-items: center;
  
}

#s-5f6740e3-1b1a-4a5b-935d-ede68c5790e0 {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(177, 227, 252, 1);
}








#s-5f6740e3-1b1a-4a5b-935d-ede68c5790e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f6740e3-1b1a-4a5b-935d-ede68c5790e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ecfd5788-4226-4b64-b475-69818865a953 {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-ecfd5788-4226-4b64-b475-69818865a953 {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-ecfd5788-4226-4b64-b475-69818865a953 .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-ecfd5788-4226-4b64-b475-69818865a953 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}
#s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 img.shogun-image {
    

    
    
    
  }


#s-c73e9260-2d72-46e2-9c29-56b8196ef9e7 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c4dc5bc-2899-4d85-b1b8-7b2cf05f2117 {
  text-align: center;
}







  #s-3c4dc5bc-2899-4d85-b1b8-7b2cf05f2117 img.shogun-image {
    

    
    
    
  }


#s-3c4dc5bc-2899-4d85-b1b8-7b2cf05f2117 .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-932c35e2-15e9-4f82-b920-009294febd79 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-932c35e2-15e9-4f82-b920-009294febd79"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-dde5a727-e5d3-46ec-b5f8-6892b6c04ec2 {
  text-align: center;
}







  #s-dde5a727-e5d3-46ec-b5f8-6892b6c04ec2 img.shogun-image {
    

    
    
    
  }


#s-dde5a727-e5d3-46ec-b5f8-6892b6c04ec2 .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-28e88818-cb25-41b1-bc7b-09e6057f8bb7 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-28e88818-cb25-41b1-bc7b-09e6057f8bb7 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-28e88818-cb25-41b1-bc7b-09e6057f8bb7 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-28e88818-cb25-41b1-bc7b-09e6057f8bb7 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-28e88818-cb25-41b1-bc7b-09e6057f8bb7 td.shogun-table-column, #s-28e88818-cb25-41b1-bc7b-09e6057f8bb7 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-aef8b3f3-ed9c-4cb5-a280-de9b96bdc77f {
  text-align: center;
}







  #s-aef8b3f3-ed9c-4cb5-a280-de9b96bdc77f img.shogun-image {
    

    
    
    
  }


#s-aef8b3f3-ed9c-4cb5-a280-de9b96bdc77f .shogun-image-content {
  
    align-items: center;
  
}

#s-bab430fc-4c34-4756-8848-6a0f1ff61255 {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-d09235b7-92b9-457a-bdae-6f787bdeb096 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(134, 85, 65, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(134, 85, 65, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-d09235b7-92b9-457a-bdae-6f787bdeb096 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d09235b7-92b9-457a-bdae-6f787bdeb096 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-d09235b7-92b9-457a-bdae-6f787bdeb096 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-d09235b7-92b9-457a-bdae-6f787bdeb096 .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-d09235b7-92b9-457a-bdae-6f787bdeb096 .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-d09235b7-92b9-457a-bdae-6f787bdeb096 .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-d09235b7-92b9-457a-bdae-6f787bdeb096 .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-a75331d2-9752-4659-b6f7-13d7cbcfee8f {
  margin-bottom: -13px;
text-align: center;
}

#s-a75331d2-9752-4659-b6f7-13d7cbcfee8f .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 0.8em;
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-a75331d2-9752-4659-b6f7-13d7cbcfee8f .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-a75331d2-9752-4659-b6f7-13d7cbcfee8f .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.3em;
  
  
}


}
#s-9145e0c7-c914-40c5-ab97-ac2f3d9faaa1 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-9145e0c7-c914-40c5-ab97-ac2f3d9faaa1 {
  margin-top: 0px;
}
}






  #s-9145e0c7-c914-40c5-ab97-ac2f3d9faaa1 img.shogun-image {
    

    
    
    
  }


#s-9145e0c7-c914-40c5-ab97-ac2f3d9faaa1 .shogun-image-content {
  
    align-items: center;
  
}

#s-a1e89b84-095e-4e35-9ec1-9297d448ae7f {
  margin-bottom: 1%;
min-height: 50px;
}








#s-a1e89b84-095e-4e35-9ec1-9297d448ae7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1e89b84-095e-4e35-9ec1-9297d448ae7f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab2c3f7c-4d33-4079-86e7-402120a65652 {
  text-align: center;
}
@media (max-width: 767px){#s-ab2c3f7c-4d33-4079-86e7-402120a65652 {
  padding-top: 10px;
}
}






  #s-ab2c3f7c-4d33-4079-86e7-402120a65652 img.shogun-image {
    

    
    
    
  }


#s-ab2c3f7c-4d33-4079-86e7-402120a65652 .shogun-image-content {
  
    align-items: center;
  
}

#s-267e20c7-e222-48e7-ab01-9eea37f60a61 {
  min-height: 50px;
}








#s-267e20c7-e222-48e7-ab01-9eea37f60a61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-267e20c7-e222-48e7-ab01-9eea37f60a61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e9216188-b869-424b-97e2-84cedb99888f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-143817f3-e71f-4156-979e-e9eda2ac2daf {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-143817f3-e71f-4156-979e-e9eda2ac2daf .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-143817f3-e71f-4156-979e-e9eda2ac2daf table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-143817f3-e71f-4156-979e-e9eda2ac2daf 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-143817f3-e71f-4156-979e-e9eda2ac2daf td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-143817f3-e71f-4156-979e-e9eda2ac2daf td.shogun-table-column, #s-143817f3-e71f-4156-979e-e9eda2ac2daf td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-6fa45e5b-80eb-4a88-a051-c39449465810 {
  text-align: center;
}







  #s-6fa45e5b-80eb-4a88-a051-c39449465810 img.shogun-image {
    

    
    
    
  }


#s-6fa45e5b-80eb-4a88-a051-c39449465810 .shogun-image-content {
  
    align-items: center;
  
}

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



#s-64771897-c220-414d-bb82-6dc9bd2f37c7 {
  text-align: center;
}







  #s-64771897-c220-414d-bb82-6dc9bd2f37c7 img.shogun-image {
    

    
    
    
  }


#s-64771897-c220-414d-bb82-6dc9bd2f37c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-72a7e9e1-d50f-4e15-8d6a-f3e43e9c699f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-5be9577f-645a-428f-8e52-ef28bea26ef6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-5be9577f-645a-428f-8e52-ef28bea26ef6 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-5be9577f-645a-428f-8e52-ef28bea26ef6 .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-5be9577f-645a-428f-8e52-ef28bea26ef6 .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-5be9577f-645a-428f-8e52-ef28bea26ef6 .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-c25c1847-7f9b-4338-a207-5f09cba265ec {
  min-height: 50px;
}








#s-c25c1847-7f9b-4338-a207-5f09cba265ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c25c1847-7f9b-4338-a207-5f09cba265ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8867155b-d6ab-4099-b7e6-35b6445d9e24 {
  margin-top: 5px;
margin-bottom: -2%;
padding-right: 600px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-8867155b-d6ab-4099-b7e6-35b6445d9e24 {
  padding-right: 50%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8867155b-d6ab-4099-b7e6-35b6445d9e24 {
  margin-bottom: -3%;
padding-right: 50%;
}
}@media (max-width: 767px){#s-8867155b-d6ab-4099-b7e6-35b6445d9e24 {
  margin-top: 20px;
margin-bottom: -4%;
padding-right: 20%;
}
}






  #s-8867155b-d6ab-4099-b7e6-35b6445d9e24 img.shogun-image {
    

    
    
    
  }


#s-8867155b-d6ab-4099-b7e6-35b6445d9e24 .shogun-image-content {
  
    align-items: center;
  
}

#s-975efabd-efba-468d-be0e-10d704fa0fa8 {
  margin-top: 8px;
}

@media (min-width: 0px) {
[id="s-975efabd-efba-468d-be0e-10d704fa0fa8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-975efabd-efba-468d-be0e-10d704fa0fa8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-975efabd-efba-468d-be0e-10d704fa0fa8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-975efabd-efba-468d-be0e-10d704fa0fa8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-ecd33025-910b-45f1-b5e8-33d9982070db {
  text-align: center;
}







  #s-ecd33025-910b-45f1-b5e8-33d9982070db img.shogun-image {
    

    
    
    
  }


#s-ecd33025-910b-45f1-b5e8-33d9982070db .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ef971d08-f731-4398-8182-b6fa418670f1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ef971d08-f731-4398-8182-b6fa418670f1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ef971d08-f731-4398-8182-b6fa418670f1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef971d08-f731-4398-8182-b6fa418670f1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d9bc23b5-1354-4d35-9806-cee4ba749165 {
  max-width: 100%;
text-align: center;
}







  #s-d9bc23b5-1354-4d35-9806-cee4ba749165 img.shogun-image {
    

    
    
    
  }


#s-d9bc23b5-1354-4d35-9806-cee4ba749165 .shogun-image-content {
  
    align-items: center;
  
}

#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 {
  padding-top: 50%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  line-height: 1em;
  
  
}


@media (min-width: 1200px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-8101b87f-e452-4550-9ad8-fd9c9eac0570 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-e0d4791d-0bc9-409a-b0ab-209cd984935a {
  text-align: center;
}







  #s-e0d4791d-0bc9-409a-b0ab-209cd984935a img.shogun-image {
    

    
    
    
  }


#s-e0d4791d-0bc9-409a-b0ab-209cd984935a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-931249db-fd6f-4388-9f6b-dddf6e4f660b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-931249db-fd6f-4388-9f6b-dddf6e4f660b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-931249db-fd6f-4388-9f6b-dddf6e4f660b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-931249db-fd6f-4388-9f6b-dddf6e4f660b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f985c2e0-d494-427a-8ce5-2e655bfeb349 {
  max-width: 100%;
text-align: center;
}







  #s-f985c2e0-d494-427a-8ce5-2e655bfeb349 img.shogun-image {
    

    
    
    
  }


#s-f985c2e0-d494-427a-8ce5-2e655bfeb349 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c80db0b-5b60-4648-8332-424ce2bfb964 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-0c80db0b-5b60-4648-8332-424ce2bfb964 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-0c80db0b-5b60-4648-8332-424ce2bfb964 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-7868daeb-3c37-40b5-b170-296318f66256 {
  text-align: center;
}







  #s-7868daeb-3c37-40b5-b170-296318f66256 img.shogun-image {
    

    
    
    
  }


#s-7868daeb-3c37-40b5-b170-296318f66256 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-09e7dc42-1735-4cdc-a6f5-04a88ab57abc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-09e7dc42-1735-4cdc-a6f5-04a88ab57abc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-09e7dc42-1735-4cdc-a6f5-04a88ab57abc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-09e7dc42-1735-4cdc-a6f5-04a88ab57abc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ea34ac60-79a3-4ae3-b3ce-c5b815387a62 {
  max-width: 100%;
text-align: center;
}







  #s-ea34ac60-79a3-4ae3-b3ce-c5b815387a62 img.shogun-image {
    

    
    
    
  }


#s-ea34ac60-79a3-4ae3-b3ce-c5b815387a62 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-4ddb4de8-cd40-4ca8-8a11-e7ce4ea599ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-7fb8aa0e-8547-4dbb-9145-1d43a507cb3a {
  text-align: center;
}







  #s-7fb8aa0e-8547-4dbb-9145-1d43a507cb3a img.shogun-image {
    

    
    
    
  }


#s-7fb8aa0e-8547-4dbb-9145-1d43a507cb3a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d16241e9-d137-40c9-8b23-76e71d144045"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d16241e9-d137-40c9-8b23-76e71d144045"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d16241e9-d137-40c9-8b23-76e71d144045"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d16241e9-d137-40c9-8b23-76e71d144045"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1fd5a94c-0dff-42c1-83b4-c3a1d17a9256 {
  max-width: 100%;
text-align: center;
}
@media (max-width: 767px){#s-1fd5a94c-0dff-42c1-83b4-c3a1d17a9256 {
  max-width: 100%;
}
}






  #s-1fd5a94c-0dff-42c1-83b4-c3a1d17a9256 img.shogun-image {
    

    
    
    
  }


#s-1fd5a94c-0dff-42c1-83b4-c3a1d17a9256 .shogun-image-content {
  
    align-items: center;
  
}

#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 15px;
min-height: 100%;
max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 {
  padding-top: 30%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
min-height: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 {
  padding-top: 51%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 {
  padding-top: 57%;
padding-bottom: 0%;
padding-right: 0px;
}
}@media (max-width: 767px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 {
  padding-top: 50%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 9px;
min-height: 100%;
}
}
#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1.2px;
  
  
  
}


@media (min-width: 1200px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  
  
}


}@media (max-width: 767px){#s-9a88c73b-0928-46c3-8d9d-103341f6bc30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  
}


}
#s-978a1955-7414-4233-8a3c-8aae71e5c840 {
  text-align: center;
}







  #s-978a1955-7414-4233-8a3c-8aae71e5c840 img.shogun-image {
    

    
    
    
  }


#s-978a1955-7414-4233-8a3c-8aae71e5c840 .shogun-image-content {
  
    align-items: center;
  
}

#s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-a645cdb0-e5c6-4ed2-9f84-7cb087d9a04d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f0b9bfd8-2988-41fe-a937-82ca36dffd4c {
  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-f0b9bfd8-2988-41fe-a937-82ca36dffd4c {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0b9bfd8-2988-41fe-a937-82ca36dffd4c {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-f0b9bfd8-2988-41fe-a937-82ca36dffd4c {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-f0b9bfd8-2988-41fe-a937-82ca36dffd4c img.shogun-image {
    

    
    
    
  }


#s-f0b9bfd8-2988-41fe-a937-82ca36dffd4c .shogun-image-content {
  
    align-items: center;
  
}

#s-23779645-ca38-4903-9a7d-28a675bf5fdc {
  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-23779645-ca38-4903-9a7d-28a675bf5fdc {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-23779645-ca38-4903-9a7d-28a675bf5fdc .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e4eb8b88-ecd2-4e61-9dba-725a15e3d1f8 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-e4eb8b88-ecd2-4e61-9dba-725a15e3d1f8 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-c05ff163-e7ae-42e0-9d60-6513c2ab7fbe"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d74c955b-b14d-4fd7-b2e3-7afa433bb520 {
  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-d74c955b-b14d-4fd7-b2e3-7afa433bb520 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d74c955b-b14d-4fd7-b2e3-7afa433bb520 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-d74c955b-b14d-4fd7-b2e3-7afa433bb520 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-d74c955b-b14d-4fd7-b2e3-7afa433bb520 img.shogun-image {
    

    
    
    
  }


#s-d74c955b-b14d-4fd7-b2e3-7afa433bb520 .shogun-image-content {
  
    align-items: center;
  
}

#s-d04a26ce-4a51-4ee4-98e7-c11167c21673 {
  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-d04a26ce-4a51-4ee4-98e7-c11167c21673 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-d04a26ce-4a51-4ee4-98e7-c11167c21673 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-80cf8c27-167f-496b-8254-e2b3e94e2a41 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-80cf8c27-167f-496b-8254-e2b3e94e2a41 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-fdf8310f-76fd-42ec-930f-0f555b2ed4fa {
  text-align: center;
}







  #s-fdf8310f-76fd-42ec-930f-0f555b2ed4fa img.shogun-image {
    

    
    
    
  }


#s-fdf8310f-76fd-42ec-930f-0f555b2ed4fa .shogun-image-content {
  
    align-items: center;
  
}

#s-339896c3-bbfd-47bf-a1a9-db350ec96cdb {
  border-style: solid;
margin-top: 4px;
margin-bottom: 4px;
padding-left: 20px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-radius: 15px;
text-align: center;
}
@media (max-width: 767px){#s-339896c3-bbfd-47bf-a1a9-db350ec96cdb {
  padding-left: 8px;
padding-right: 8px;
}
}






  #s-339896c3-bbfd-47bf-a1a9-db350ec96cdb img.shogun-image {
    

    
    
    
  }


#s-339896c3-bbfd-47bf-a1a9-db350ec96cdb .shogun-image-content {
  
    align-items: center;
  
}

#s-70417fe4-590d-4c2b-b46c-d6e77b8b5143 {
  padding-left: 20px;
padding-right: 20px;
}

#s-c32eb81d-b792-4a5b-b2b1-656da9ae2eb1 {
  padding-left: 100px;
padding-right: 100px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c32eb81d-b792-4a5b-b2b1-656da9ae2eb1 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-c32eb81d-b792-4a5b-b2b1-656da9ae2eb1 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-c32eb81d-b792-4a5b-b2b1-656da9ae2eb1 img.shogun-image {
    

    
    
    
  }


#s-c32eb81d-b792-4a5b-b2b1-656da9ae2eb1 .shogun-image-content {
  
    align-items: center;
  
}

#s-8318228a-eeac-4d5e-84d3-7ab11c624d8a {
  text-align: center;
}







  #s-8318228a-eeac-4d5e-84d3-7ab11c624d8a img.shogun-image {
    

    
    
    
  }


#s-8318228a-eeac-4d5e-84d3-7ab11c624d8a .shogun-image-content {
  
    align-items: center;
  
}

#s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce {
  padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce {
  
}
}@media (max-width: 767px){#s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce {
  padding-left: 2%;
padding-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-49087bdf-ca02-4c4f-aec7-54dcaceeb8ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-bc6da62d-47b0-43c9-92a3-3f3e6e3e592a {
  text-align: center;
}
@media (max-width: 767px){#s-bc6da62d-47b0-43c9-92a3-3f3e6e3e592a {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-bc6da62d-47b0-43c9-92a3-3f3e6e3e592a .shogun-image-content {
  
    align-items: center;
  
}

#s-a13c60c7-e8b4-43f2-ba97-9e306998b39e {
  text-align: center;
}
@media (max-width: 767px){#s-a13c60c7-e8b4-43f2-ba97-9e306998b39e {
  margin-left: 40px;
margin-right: 40px;
}
}







#s-a13c60c7-e8b4-43f2-ba97-9e306998b39e .shogun-image-content {
  
    align-items: center;
  
}

#s-a6552b24-d589-49e7-80cb-f989f31554b5 {
  min-height: 50px;
}








#s-a6552b24-d589-49e7-80cb-f989f31554b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6552b24-d589-49e7-80cb-f989f31554b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-efd907d6-b633-4c94-bcb7-d2264ae72331 {
  text-align: center;
background-color: rgba(247, 245, 239, 1);
}







  #s-efd907d6-b633-4c94-bcb7-d2264ae72331 img.shogun-image {
    

    
    
    
  }


#s-efd907d6-b633-4c94-bcb7-d2264ae72331 .shogun-image-content {
  
    align-items: center;
  
}

#s-51b200d8-5ed8-4964-9223-5dcae4d485e3 {
  padding-top: 70px;
text-align: center;
}
@media (max-width: 767px){#s-51b200d8-5ed8-4964-9223-5dcae4d485e3 {
  padding-top: 16px;
}
}
#s-51b200d8-5ed8-4964-9223-5dcae4d485e3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 50px;
  
  letter-spacing: 2px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-51b200d8-5ed8-4964-9223-5dcae4d485e3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-51b200d8-5ed8-4964-9223-5dcae4d485e3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}


}
#s-e3a8135d-937e-475f-b3a2-fdf4ec812b7e {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-e3a8135d-937e-475f-b3a2-fdf4ec812b7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3a8135d-937e-475f-b3a2-fdf4ec812b7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-afeed2aa-3736-47cd-8060-3b3cc8f4227d {
  text-align: center;
}







  #s-afeed2aa-3736-47cd-8060-3b3cc8f4227d img.shogun-image {
    

    
    
    
  }


#s-afeed2aa-3736-47cd-8060-3b3cc8f4227d .shogun-image-content {
  
    align-items: center;
  
}

#s-7ef4c706-9c37-4a1a-b58f-2689b68c8c0b {
  margin-left: 90px;
margin-right: 90px;
}
@media (max-width: 767px){#s-7ef4c706-9c37-4a1a-b58f-2689b68c8c0b {
  margin-left: 40px;
margin-right: 40px;
}
}
#s-c2a88d17-6e69-4378-855f-2ee9d0780113 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-c2a88d17-6e69-4378-855f-2ee9d0780113 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2a88d17-6e69-4378-855f-2ee9d0780113.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64b64f6b-6f97-4bee-99c9-800a24359fbc {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
text-align: center;
}







  #s-64b64f6b-6f97-4bee-99c9-800a24359fbc img.shogun-image {
    

    
    
    
  }


#s-64b64f6b-6f97-4bee-99c9-800a24359fbc .shogun-image-content {
  
    align-items: center;
  
}

#s-63aafcd4-e57a-444c-bb98-df2d641174ba {
  margin-top: 14px;
text-align: center;
}







  #s-63aafcd4-e57a-444c-bb98-df2d641174ba img.shogun-image {
    

    
    
    
  }


#s-63aafcd4-e57a-444c-bb98-df2d641174ba .shogun-image-content {
  
    align-items: center;
  
}

#s-137fbbf2-4f30-4f4c-b011-b7aa11b3b25c {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-137fbbf2-4f30-4f4c-b011-b7aa11b3b25c {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-137fbbf2-4f30-4f4c-b011-b7aa11b3b25c .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-137fbbf2-4f30-4f4c-b011-b7aa11b3b25c .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-a95ad78a-a029-4e0d-959e-d79493704532 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a95ad78a-a029-4e0d-959e-d79493704532 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-a95ad78a-a029-4e0d-959e-d79493704532 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-a95ad78a-a029-4e0d-959e-d79493704532 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-9c5677e3-b38d-451e-b4e1-8d71ab2c0d7e {
  min-height: 50px;
}








#s-9c5677e3-b38d-451e-b4e1-8d71ab2c0d7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c5677e3-b38d-451e-b4e1-8d71ab2c0d7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2060c55b-99a5-46a2-8aeb-ed0d8a6ed574 {
  min-height: 50px;
}








#s-2060c55b-99a5-46a2-8aeb-ed0d8a6ed574 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2060c55b-99a5-46a2-8aeb-ed0d8a6ed574.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6edc1cb3-53db-4b6b-a2c7-6132d711b143 {
  text-align: center;
}







  #s-6edc1cb3-53db-4b6b-a2c7-6132d711b143 img.shogun-image {
    

    
    
    
  }


#s-6edc1cb3-53db-4b6b-a2c7-6132d711b143 .shogun-image-content {
  
    align-items: center;
  
}

#s-9bda10ea-6309-4c8b-bea5-d0acf89d546c {
  min-height: 50px;
}








#s-9bda10ea-6309-4c8b-bea5-d0acf89d546c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9bda10ea-6309-4c8b-bea5-d0acf89d546c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-179faee4-d7d9-4ed5-b3ee-819fd0e4dbac {
  text-align: center;
}







  #s-179faee4-d7d9-4ed5-b3ee-819fd0e4dbac img.shogun-image {
    

    
    
    
  }


#s-179faee4-d7d9-4ed5-b3ee-819fd0e4dbac .shogun-image-content {
  
    align-items: center;
  
}

#s-462e4d1c-c729-4473-ad53-4c8f0be7a0b3 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-462e4d1c-c729-4473-ad53-4c8f0be7a0b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-462e4d1c-c729-4473-ad53-4c8f0be7a0b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fed968ab-f280-49ab-a56e-be69dc0db28a {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-fed968ab-f280-49ab-a56e-be69dc0db28a .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-fed968ab-f280-49ab-a56e-be69dc0db28a .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-62fa4161-6ef0-40ee-b1e8-9a6579065eb4 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-62fa4161-6ef0-40ee-b1e8-9a6579065eb4 img.shogun-image {
    

    
    
    
  }


#s-62fa4161-6ef0-40ee-b1e8-9a6579065eb4 .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}
