.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-caea4aa9-80be-427a-9566-f2a79f998f46 {
  min-height: 50px;
}








#s-caea4aa9-80be-427a-9566-f2a79f998f46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-caea4aa9-80be-427a-9566-f2a79f998f46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1628e81f-fb5f-4e71-a496-a90761812ac1 {
  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-1628e81f-fb5f-4e71-a496-a90761812ac1 {
  
}
}







#s-1628e81f-fb5f-4e71-a496-a90761812ac1 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-1628e81f-fb5f-4e71-a496-a90761812ac1.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-dc551920-af87-460d-a9f3-3e318cf5b744 {
  max-width: 100%;
text-align: center;
}
@media (min-width: 1200px){#s-dc551920-af87-460d-a9f3-3e318cf5b744 {
  
}
}






  #s-dc551920-af87-460d-a9f3-3e318cf5b744 img.shogun-image {
    

    
    
    
  }


#s-dc551920-af87-460d-a9f3-3e318cf5b744 .shogun-image-content {
  
    align-items: center;
  
}

#s-68b77a7c-8f26-4fb1-8094-e446619181bf {
  min-height: 50px;
background-color: rgba(255, 240, 218, 1);
}








#s-68b77a7c-8f26-4fb1-8094-e446619181bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68b77a7c-8f26-4fb1-8094-e446619181bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-44c33554-b029-4d62-bd61-1b25a6248823 {
  min-height: 50px;
}








#s-44c33554-b029-4d62-bd61-1b25a6248823 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44c33554-b029-4d62-bd61-1b25a6248823.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97fd5e45-d90d-4232-ac19-43aabf51878c {
  min-height: 50px;
}








#s-97fd5e45-d90d-4232-ac19-43aabf51878c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97fd5e45-d90d-4232-ac19-43aabf51878c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-436beced-0e69-4852-8d1e-d91439bcad1c {
  text-align: center;
}







  #s-436beced-0e69-4852-8d1e-d91439bcad1c img.shogun-image {
    

    
    
    
  }


#s-436beced-0e69-4852-8d1e-d91439bcad1c .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-2fa72207-50f3-4c55-984f-e4dc65f2f3ca {
  text-align: center;
}

#s-2fa72207-50f3-4c55-984f-e4dc65f2f3ca .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-2fa72207-50f3-4c55-984f-e4dc65f2f3ca .shogun-heading-component h3 {
  color: rgba(170, 141, 111, 1);
  font-weight:  700 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 2px;
  
}


}@media (max-width: 767px){#s-2fa72207-50f3-4c55-984f-e4dc65f2f3ca .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-f3b8e255-0150-4af3-9eef-6a884a2f9ab8 {
  text-align: center;
}
@media (max-width: 767px){#s-f3b8e255-0150-4af3-9eef-6a884a2f9ab8 {
  margin-bottom: -10px;
}
}
#s-f3b8e255-0150-4af3-9eef-6a884a2f9ab8 .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-f3b8e255-0150-4af3-9eef-6a884a2f9ab8 .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-f3b8e255-0150-4af3-9eef-6a884a2f9ab8 .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-badddec5-ad7e-4150-9e94-817bb0a2d12f {
  margin-bottom: 6%;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-badddec5-ad7e-4150-9e94-817bb0a2d12f {
  margin-left: 3%;
margin-right: 3%;
padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-badddec5-ad7e-4150-9e94-817bb0a2d12f {
  padding-left: 3%;
padding-right: 3%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-badddec5-ad7e-4150-9e94-817bb0a2d12f {
  padding-left: 3%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-badddec5-ad7e-4150-9e94-817bb0a2d12f {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
}
#s-eb485615-3682-486f-ad05-6e263907916c {
  text-align: center;
}







  #s-eb485615-3682-486f-ad05-6e263907916c img.shogun-image {
    

    
    
    
  }


#s-eb485615-3682-486f-ad05-6e263907916c .shogun-image-content {
  
    align-items: center;
  
}

#s-e61a0d3a-1e74-45cb-9c44-b0224390b176 {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-e61a0d3a-1e74-45cb-9c44-b0224390b176 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e61a0d3a-1e74-45cb-9c44-b0224390b176.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d738f155-26d0-4468-9293-3b0581b35cd1 {
  text-align: center;
}







  #s-d738f155-26d0-4468-9293-3b0581b35cd1 img.shogun-image {
    

    
    
    
  }


#s-d738f155-26d0-4468-9293-3b0581b35cd1 .shogun-image-content {
  
    align-items: center;
  
}

#s-d04be908-2cb8-4d65-ab1a-5910ee31c1d0 {
  padding-top: 20px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(250, 149, 76, 0.54);
}








#s-d04be908-2cb8-4d65-ab1a-5910ee31c1d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d04be908-2cb8-4d65-ab1a-5910ee31c1d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82ccdb43-3ff0-446c-8030-5bc557e07ad2 {
  margin-left: 44px;
margin-right: 44px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-82ccdb43-3ff0-446c-8030-5bc557e07ad2 {
  padding-top: 1px;
padding-bottom: 1px;
}
}
#s-82ccdb43-3ff0-446c-8030-5bc557e07ad2 .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-82ccdb43-3ff0-446c-8030-5bc557e07ad2 .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-82ccdb43-3ff0-446c-8030-5bc557e07ad2 .shogun-heading-component h6 {
  color: #000;
  font-weight:  300 ;
  font-family: "Noto Sans TC";
  font-style:  normal ;
  font-size: 17px;
  
  
  
}


}
#s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 {
  padding-left: 300px;
padding-bottom: 20px;
padding-right: 300px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 {
  padding-left: 0px;
padding-right: 0px;
}
}






  #s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 img.shogun-image {
    

    
    
    
  }


#s-cea65538-2455-45e7-8605-2f9f9dcc8cf3 .shogun-image-content {
  
    align-items: center;
  
}

#s-cc88e466-f564-4b4a-9d84-146157c9c244 {
  text-align: center;
}







  #s-cc88e466-f564-4b4a-9d84-146157c9c244 img.shogun-image {
    

    
    
    
  }


#s-cc88e466-f564-4b4a-9d84-146157c9c244 .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-defbb686-4059-48e8-a9c0-aaadf08832d1 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-defbb686-4059-48e8-a9c0-aaadf08832d1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-c6084765-40ab-4a80-b4d3-07977d06c743 {
  text-align: center;
}







  #s-c6084765-40ab-4a80-b4d3-07977d06c743 img.shogun-image {
    

    
    
    
  }


#s-c6084765-40ab-4a80-b4d3-07977d06c743 .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-c8a2b1fe-69e5-479b-afab-5986407052ef .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-c8a2b1fe-69e5-479b-afab-5986407052ef table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c8a2b1fe-69e5-479b-afab-5986407052ef 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-c8a2b1fe-69e5-479b-afab-5986407052ef td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-c8a2b1fe-69e5-479b-afab-5986407052ef td.shogun-table-column, #s-c8a2b1fe-69e5-479b-afab-5986407052ef td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-072d6d0d-a8e5-4a36-b836-6208fa8e4280 {
  text-align: center;
}







  #s-072d6d0d-a8e5-4a36-b836-6208fa8e4280 img.shogun-image {
    

    
    
    
  }


#s-072d6d0d-a8e5-4a36-b836-6208fa8e4280 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8148607-ed73-4527-afd7-95361726c336 {
  margin-top: -10px;
padding-left: 18px;
padding-right: 18px;
background-color: rgba(255, 255, 255, 0);
}

#s-614344e5-fd5e-44da-bfba-83958cfcc0a4 {
  padding-top: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(240, 132, 55, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
background-repeat: repeat;
background-color: rgba(240, 132, 55, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-614344e5-fd5e-44da-bfba-83958cfcc0a4 {
  padding-top: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-614344e5-fd5e-44da-bfba-83958cfcc0a4 {
  padding-top: 18px;
}
}@media (max-width: 767px){#s-614344e5-fd5e-44da-bfba-83958cfcc0a4 {
  padding-top: 16px;
padding-bottom: 8px;
}
}
#s-614344e5-fd5e-44da-bfba-83958cfcc0a4 .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-614344e5-fd5e-44da-bfba-83958cfcc0a4 .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-614344e5-fd5e-44da-bfba-83958cfcc0a4 .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-614344e5-fd5e-44da-bfba-83958cfcc0a4 .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-add7369b-15a7-40cd-ba9f-1501292ec99d {
  margin-bottom: -13px;
text-align: center;
}

#s-add7369b-15a7-40cd-ba9f-1501292ec99d .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-add7369b-15a7-40cd-ba9f-1501292ec99d .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-add7369b-15a7-40cd-ba9f-1501292ec99d .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-add7369b-15a7-40cd-ba9f-1501292ec99d .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-9a1d84d0-6bb0-419c-80f9-ff6a53979ee5 {
  margin-top: 30px;
text-align: center;
}
@media (max-width: 767px){#s-9a1d84d0-6bb0-419c-80f9-ff6a53979ee5 {
  margin-top: 0px;
}
}






  #s-9a1d84d0-6bb0-419c-80f9-ff6a53979ee5 img.shogun-image {
    

    
    
    
  }


#s-9a1d84d0-6bb0-419c-80f9-ff6a53979ee5 .shogun-image-content {
  
    align-items: center;
  
}

#s-87c02855-eeb9-4ced-9f3d-6c90da9e43d6 {
  margin-bottom: 1%;
min-height: 50px;
}








#s-87c02855-eeb9-4ced-9f3d-6c90da9e43d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87c02855-eeb9-4ced-9f3d-6c90da9e43d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-006c4bc7-517a-4562-ac66-04c0c38615c6 {
  text-align: center;
}







  #s-006c4bc7-517a-4562-ac66-04c0c38615c6 img.shogun-image {
    

    
    
    
  }


#s-006c4bc7-517a-4562-ac66-04c0c38615c6 .shogun-image-content {
  
    align-items: center;
  
}

#s-8ec58682-c969-4e64-85f6-e9e538286981 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-8ec58682-c969-4e64-85f6-e9e538286981 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-8ec58682-c969-4e64-85f6-e9e538286981"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ec58682-c969-4e64-85f6-e9e538286981"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ec58682-c969-4e64-85f6-e9e538286981"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ec58682-c969-4e64-85f6-e9e538286981"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-210facb3-ebc1-4ca5-b30d-6c70bcf19de0 {
  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-210facb3-ebc1-4ca5-b30d-6c70bcf19de0 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-210facb3-ebc1-4ca5-b30d-6c70bcf19de0 {
  margin-left: 50px;
margin-bottom: -30px;
margin-right: 50px;
}
}






  #s-210facb3-ebc1-4ca5-b30d-6c70bcf19de0 img.shogun-image {
    

    
    
    
  }


#s-210facb3-ebc1-4ca5-b30d-6c70bcf19de0 .shogun-image-content {
  
    align-items: center;
  
}

#s-0d8d69c0-2032-4b85-b734-dce866597617 {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-0d8d69c0-2032-4b85-b734-dce866597617 {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d8d69c0-2032-4b85-b734-dce866597617 {
  margin-top: 16%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d8d69c0-2032-4b85-b734-dce866597617 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-0d8d69c0-2032-4b85-b734-dce866597617 {
  margin-top: 50px;
text-align: center;
}
}
#s-0d8d69c0-2032-4b85-b734-dce866597617 .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-0d8d69c0-2032-4b85-b734-dce866597617 .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-0d8d69c0-2032-4b85-b734-dce866597617 .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-0d8d69c0-2032-4b85-b734-dce866597617 .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-308326f1-5f21-4532-bee8-102938d122d7 {
  text-align: left;
}
@media (max-width: 767px){#s-308326f1-5f21-4532-bee8-102938d122d7 {
  margin-bottom: -30px;
}
}
#s-308326f1-5f21-4532-bee8-102938d122d7 .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-308326f1-5f21-4532-bee8-102938d122d7 .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-308326f1-5f21-4532-bee8-102938d122d7 .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-acbde25d-1df7-4c9a-9b52-3b9832dc790d {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-acbde25d-1df7-4c9a-9b52-3b9832dc790d {
  display: none;
}
#s-acbde25d-1df7-4c9a-9b52-3b9832dc790d, #wrap-s-acbde25d-1df7-4c9a-9b52-3b9832dc790d { display: none !important; }}@media (max-width: 767px){#s-acbde25d-1df7-4c9a-9b52-3b9832dc790d {
  display: none;
}
#s-acbde25d-1df7-4c9a-9b52-3b9832dc790d, #wrap-s-acbde25d-1df7-4c9a-9b52-3b9832dc790d { display: none !important; }}






  #s-acbde25d-1df7-4c9a-9b52-3b9832dc790d img.shogun-image {
    

    
    
    
  }


#s-acbde25d-1df7-4c9a-9b52-3b9832dc790d .shogun-image-content {
  
    align-items: center;
  
}

#s-27835503-557d-44fb-a85d-804c45d21e2e {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-27835503-557d-44fb-a85d-804c45d21e2e {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-27835503-557d-44fb-a85d-804c45d21e2e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27835503-557d-44fb-a85d-804c45d21e2e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-27835503-557d-44fb-a85d-804c45d21e2e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-27835503-557d-44fb-a85d-804c45d21e2e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-27835503-557d-44fb-a85d-804c45d21e2e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f47d9b61-c41a-444e-9733-1478a9f97222 {
  margin-top: 80px;
margin-bottom: -10px;
text-align: left;
}
@media (min-width: 1200px){#s-f47d9b61-c41a-444e-9733-1478a9f97222 {
  margin-top: 20%;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f47d9b61-c41a-444e-9733-1478a9f97222 {
  margin-top: 16%;
margin-bottom: 0px;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f47d9b61-c41a-444e-9733-1478a9f97222 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-f47d9b61-c41a-444e-9733-1478a9f97222 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
}
#s-f47d9b61-c41a-444e-9733-1478a9f97222 .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-f47d9b61-c41a-444e-9733-1478a9f97222 .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-f47d9b61-c41a-444e-9733-1478a9f97222 .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-f47d9b61-c41a-444e-9733-1478a9f97222 .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-5e2532ee-df08-4630-98fa-cbd27f81725e {
  text-align: left;
}
@media (max-width: 767px){#s-5e2532ee-df08-4630-98fa-cbd27f81725e {
  margin-bottom: -30px;
}
}
#s-5e2532ee-df08-4630-98fa-cbd27f81725e .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-5e2532ee-df08-4630-98fa-cbd27f81725e .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-5e2532ee-df08-4630-98fa-cbd27f81725e .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-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c {
  display: none;
}
#s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c, #wrap-s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c { display: none !important; }}@media (max-width: 767px){#s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c {
  display: none;
}
#s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c, #wrap-s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c { display: none !important; }}






  #s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c img.shogun-image {
    

    
    
    
  }


#s-d4f6f6f0-d3fa-44a5-b6ad-0745f1d0934c .shogun-image-content {
  
    align-items: center;
  
}

#s-53760e02-353e-425f-8fb8-136c1f1fd707 {
  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-53760e02-353e-425f-8fb8-136c1f1fd707 {
  padding-top: 5%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-53760e02-353e-425f-8fb8-136c1f1fd707 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-53760e02-353e-425f-8fb8-136c1f1fd707 img.shogun-image {
    

    
    
    
  }


#s-53760e02-353e-425f-8fb8-136c1f1fd707 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7 {
  margin-top: 5px;
margin-bottom: 45px;
}
}
@media (min-width: 0px) {
[id="s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ecd6c77-38ac-499b-9c3f-f24e823f8bb7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-73df2903-ced7-4d7d-9c31-b9888d6a3788 {
  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: 1200px){#s-73df2903-ced7-4d7d-9c31-b9888d6a3788 {
  padding-left: 20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-73df2903-ced7-4d7d-9c31-b9888d6a3788 {
  padding-top: 0%;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-73df2903-ced7-4d7d-9c31-b9888d6a3788 {
  margin-left: 50px;
margin-right: 50px;
}
}






  #s-73df2903-ced7-4d7d-9c31-b9888d6a3788 img.shogun-image {
    

    
    
    
  }


#s-73df2903-ced7-4d7d-9c31-b9888d6a3788 .shogun-image-content {
  
    align-items: center;
  
}

#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a {
  margin-top: 80px;
margin-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a {
  margin-top: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a {
  margin-top: 16%;
padding-top: 5%;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a {
  margin-top: 20px;
text-align: center;
}
}
#s-29c75e3e-1294-459a-bf0e-ba3dbbc5779a .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-29c75e3e-1294-459a-bf0e-ba3dbbc5779a .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-29c75e3e-1294-459a-bf0e-ba3dbbc5779a .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-29c75e3e-1294-459a-bf0e-ba3dbbc5779a .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-1196d4f4-5138-48cd-b85a-72e9cdcb51a1 {
  text-align: left;
}
@media (max-width: 767px){#s-1196d4f4-5138-48cd-b85a-72e9cdcb51a1 {
  margin-bottom: -30px;
}
}
#s-1196d4f4-5138-48cd-b85a-72e9cdcb51a1 .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 (min-width: 1200px){#s-1196d4f4-5138-48cd-b85a-72e9cdcb51a1 .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: 992px) and (max-width: 1199px){#s-1196d4f4-5138-48cd-b85a-72e9cdcb51a1 .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;
}


}
#s-585dc63c-37a0-4dfb-ad45-12ee007ab123 {
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-585dc63c-37a0-4dfb-ad45-12ee007ab123 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-585dc63c-37a0-4dfb-ad45-12ee007ab123 {
  display: none;
}
#s-585dc63c-37a0-4dfb-ad45-12ee007ab123, #wrap-s-585dc63c-37a0-4dfb-ad45-12ee007ab123 { display: none !important; }}@media (max-width: 767px){#s-585dc63c-37a0-4dfb-ad45-12ee007ab123 {
  display: none;
}
#s-585dc63c-37a0-4dfb-ad45-12ee007ab123, #wrap-s-585dc63c-37a0-4dfb-ad45-12ee007ab123 { display: none !important; }}






  #s-585dc63c-37a0-4dfb-ad45-12ee007ab123 img.shogun-image {
    

    
    
    
  }


#s-585dc63c-37a0-4dfb-ad45-12ee007ab123 .shogun-image-content {
  
    align-items: center;
  
}

#s-50746be2-6802-4f8f-acc4-d5cce968b0df {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-50746be2-6802-4f8f-acc4-d5cce968b0df {
  padding-top: 10px;
}
}






  #s-50746be2-6802-4f8f-acc4-d5cce968b0df img.shogun-image {
    

    
    
    
  }


#s-50746be2-6802-4f8f-acc4-d5cce968b0df .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3d4d9726-ece7-4043-8bd8-31cdf1563de9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) and (max-width: 1199px){#s-9d983fd6-ee57-4672-8447-b033604f63e1 {
  margin-top: 5%;
margin-bottom: 5%;
}
}
#s-9d983fd6-ee57-4672-8447-b033604f63e1 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-9d983fd6-ee57-4672-8447-b033604f63e1 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-9d983fd6-ee57-4672-8447-b033604f63e1 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-9d983fd6-ee57-4672-8447-b033604f63e1 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-9d983fd6-ee57-4672-8447-b033604f63e1 td.shogun-table-column, #s-9d983fd6-ee57-4672-8447-b033604f63e1 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-f29839ca-9e83-454d-9754-39e55ae92042 {
  text-align: center;
}







  #s-f29839ca-9e83-454d-9754-39e55ae92042 img.shogun-image {
    

    
    
    
  }


#s-f29839ca-9e83-454d-9754-39e55ae92042 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c6243a7-1519-430b-b19f-27b215998f6e {
  margin-top: 54px;
margin-left: 20%;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-0c6243a7-1519-430b-b19f-27b215998f6e {
  padding-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c6243a7-1519-430b-b19f-27b215998f6e {
  padding-left: 0px;
padding-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c6243a7-1519-430b-b19f-27b215998f6e {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-0c6243a7-1519-430b-b19f-27b215998f6e {
  margin-top: 43px;
margin-left: 10%;
padding-left: 0%;
padding-right: 0px;
}
}
#s-0c6243a7-1519-430b-b19f-27b215998f6e .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-0c6243a7-1519-430b-b19f-27b215998f6e .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.3em;
  
  text-align: left;
}


}
#s-1bb22328-f3f8-4a47-bfdb-3c260a32fc7b {
  text-align: center;
}







  #s-1bb22328-f3f8-4a47-bfdb-3c260a32fc7b img.shogun-image {
    

    
    
    
  }


#s-1bb22328-f3f8-4a47-bfdb-3c260a32fc7b .shogun-image-content {
  
    align-items: center;
  
}

#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: -30px;
margin-right: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-81ba0738-8f9c-4e4c-aeb2-1252e22f9eca .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-282fe124-6938-49d0-a96a-f1ae8fa87c1c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-282fe124-6938-49d0-a96a-f1ae8fa87c1c {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-282fe124-6938-49d0-a96a-f1ae8fa87c1c .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-282fe124-6938-49d0-a96a-f1ae8fa87c1c .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-282fe124-6938-49d0-a96a-f1ae8fa87c1c .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-f1cc4a0a-eaf5-4aa4-8cc7-0d4f2a91ae67 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-f1cc4a0a-eaf5-4aa4-8cc7-0d4f2a91ae67 img.shogun-image {
    

    
    
    
  }


#s-f1cc4a0a-eaf5-4aa4-8cc7-0d4f2a91ae67 .shogun-image-content {
  
    align-items: center;
  
}

#s-5da98eab-1d46-4d55-abff-6400130fc91e {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-5da98eab-1d46-4d55-abff-6400130fc91e {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-5da98eab-1d46-4d55-abff-6400130fc91e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 {
  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-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 img.shogun-image {
    

    
    
    
  }


#s-4aa62a91-7e39-4cf5-9b9d-1c868c3d52f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d796894-f0d0-4fdf-a94c-9fbed58ae0f1 {
  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-8d796894-f0d0-4fdf-a94c-9fbed58ae0f1 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-8d796894-f0d0-4fdf-a94c-9fbed58ae0f1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-8d796894-f0d0-4fdf-a94c-9fbed58ae0f1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-601ad230-f6ce-4ffc-b2d5-a7c091e01e8a {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-601ad230-f6ce-4ffc-b2d5-a7c091e01e8a {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96 {
  margin-top: 6px;
margin-left: 20px;
margin-bottom: 11px;
margin-right: 20px;
}
@media (max-width: 767px){#s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-dcc225c5-9728-4f8b-ba61-70a3f6cdbf96"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-507a568c-7633-44d8-9847-263ecaf84106 {
  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-507a568c-7633-44d8-9847-263ecaf84106 {
  margin-top: 9%;
margin-bottom: 9%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-507a568c-7633-44d8-9847-263ecaf84106 {
  margin-top: 45%;
margin-bottom: 45%;
}
}@media (max-width: 767px){#s-507a568c-7633-44d8-9847-263ecaf84106 {
  margin-left: 45px;
margin-right: 45px;
padding-top: 5px;
padding-bottom: 5px;
}
}






  #s-507a568c-7633-44d8-9847-263ecaf84106 img.shogun-image {
    

    
    
    
  }


#s-507a568c-7633-44d8-9847-263ecaf84106 .shogun-image-content {
  
    align-items: center;
  
}

#s-200e21c0-ec9e-4983-b593-0e316cb098f6 {
  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-200e21c0-ec9e-4983-b593-0e316cb098f6 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 24px;
margin-right: 0px;
}
}
#s-200e21c0-ec9e-4983-b593-0e316cb098f6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (min-width: 1200px){#s-200e21c0-ec9e-4983-b593-0e316cb098f6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


}
#s-13e15ac8-5949-4b1c-b0ad-2eb7ca225c35 {
  margin-top: -40px;
margin-left: 28px;
margin-right: 28px;
}
@media (max-width: 767px){#s-13e15ac8-5949-4b1c-b0ad-2eb7ca225c35 {
  margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
}
}
#s-40f8ba2a-285e-4ec7-8fa8-7944f601a625 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-40f8ba2a-285e-4ec7-8fa8-7944f601a625 img.shogun-image {
    

    
    
    
  }


#s-40f8ba2a-285e-4ec7-8fa8-7944f601a625 .shogun-image-content {
  
    align-items: center;
  
}

#s-0227d297-c077-4269-8e5d-52bd2bc7ab4f {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-0227d297-c077-4269-8e5d-52bd2bc7ab4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0227d297-c077-4269-8e5d-52bd2bc7ab4f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c822c24f-5266-4c91-9310-660531b77062 {
  text-align: left;
}

#s-c822c24f-5266-4c91-9310-660531b77062 .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-c822c24f-5266-4c91-9310-660531b77062 .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-8b79873e-6bbd-43ce-9be1-e5e143a2d1a4 {
  text-align: left;
}

#s-8b79873e-6bbd-43ce-9be1-e5e143a2d1a4 .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-8b79873e-6bbd-43ce-9be1-e5e143a2d1a4 .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-7478b946-9585-47cc-b66c-fadb5012740e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7478b946-9585-47cc-b66c-fadb5012740e .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  
}


@media (max-width: 767px){#s-7478b946-9585-47cc-b66c-fadb5012740e .shogun-heading-component h6 {
  color: rgba(95, 95, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  
}


}
#s-bf1c63c7-6f8d-4504-ab41-923fe83e0fcf {
  text-align: left;
}

#s-bf1c63c7-6f8d-4504-ab41-923fe83e0fcf .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-bf1c63c7-6f8d-4504-ab41-923fe83e0fcf .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-deed0efa-b728-4cf7-adf4-6da31ef7d7ff {
  text-align: left;
}

#s-deed0efa-b728-4cf7-adf4-6da31ef7d7ff .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-deed0efa-b728-4cf7-adf4-6da31ef7d7ff .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-3210a748-e9f4-4bcc-b96a-9422d2d3e7c6 {
  margin-top: 14px;
text-align: center;
}







  #s-3210a748-e9f4-4bcc-b96a-9422d2d3e7c6 img.shogun-image {
    

    
    
    
  }


#s-3210a748-e9f4-4bcc-b96a-9422d2d3e7c6 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6313a96-d15e-43a3-b324-53ad602d2eb9 {
  margin-top: 10px;
margin-bottom: -30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a6313a96-d15e-43a3-b324-53ad602d2eb9 {
  margin-top: 0px;
margin-bottom: -20px;
}
}
#s-a6313a96-d15e-43a3-b324-53ad602d2eb9 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-a6313a96-d15e-43a3-b324-53ad602d2eb9 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


}
#s-215d7f77-300e-4ffc-935d-22ab5a0fa42d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-215d7f77-300e-4ffc-935d-22ab5a0fa42d {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-215d7f77-300e-4ffc-935d-22ab5a0fa42d .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-215d7f77-300e-4ffc-935d-22ab5a0fa42d .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: center;
}


}
#s-f4c1f9ee-8c6e-4f5b-842a-dc8c60f6060d {
  min-height: 50px;
}








#s-f4c1f9ee-8c6e-4f5b-842a-dc8c60f6060d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4c1f9ee-8c6e-4f5b-842a-dc8c60f6060d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-08cd67ac-b4cf-4532-bcd5-28f82416042c {
  text-align: center;
}







  #s-08cd67ac-b4cf-4532-bcd5-28f82416042c img.shogun-image {
    

    
    
    
  }


#s-08cd67ac-b4cf-4532-bcd5-28f82416042c .shogun-image-content {
  
    align-items: center;
  
}

#s-770636d8-fe20-4cf3-946c-8fa668ef3a5b {
  min-height: 50px;
background-color: rgba(247, 245, 239, 1);
}








#s-770636d8-fe20-4cf3-946c-8fa668ef3a5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-770636d8-fe20-4cf3-946c-8fa668ef3a5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a344b576-229e-47b4-8958-2a89f40eee07 {
  margin-left: 50px;
margin-right: 50px;
text-align: left;
}

#s-a344b576-229e-47b4-8958-2a89f40eee07 .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-a344b576-229e-47b4-8958-2a89f40eee07 .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-dfa61694-9c91-452b-add9-b6d104094ff5 {
  text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-dfa61694-9c91-452b-add9-b6d104094ff5 img.shogun-image {
    

    
    
    
  }


#s-dfa61694-9c91-452b-add9-b6d104094ff5 .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}
