.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-3b9cf32a-661f-4a45-a6a8-26401408fa62 {
  min-height: 50px;
background-attachment: scroll;
}








#s-3b9cf32a-661f-4a45-a6a8-26401408fa62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b9cf32a-661f-4a45-a6a8-26401408fa62.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-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
aspect-ratio: 2000/1333;
text-align: center;
}





  #s-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c img.shogun-image,
  #s-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c {
    width: 100%;
    height: auto;
  }



  #s-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c img.shogun-image {
    

    
    
    
  }


#s-9a4e87f1-c5b7-49f0-8e72-8abb61c5f70c .shogun-image-content {
  
    align-items: center;
  
}

#s-b176bb42-4df9-461b-9688-ca1af8c72891 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
background-color: rgba(0, 0, 0, 1);
}








#s-b176bb42-4df9-461b-9688-ca1af8c72891 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b176bb42-4df9-461b-9688-ca1af8c72891.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-5585fa2c-525d-41c4-8938-47a45b766996 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: -5px;
margin-right: auto;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
max-width: 700px;
}

#s-2fabb56d-8dd4-43a7-987e-9ef3fc2a5b32 {
  min-height: 50px;
}








#s-2fabb56d-8dd4-43a7-987e-9ef3fc2a5b32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fabb56d-8dd4-43a7-987e-9ef3fc2a5b32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-052db1d2-30f9-43a8-a03b-46591e6c7638 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}

#s-9e08b55d-401f-4657-a148-e9b9e5de78e8 {
  min-height: 50px;
}








#s-9e08b55d-401f-4657-a148-e9b9e5de78e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e08b55d-401f-4657-a148-e9b9e5de78e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-51067a2d-ab5b-409e-a1d0-aba1eca4c113 {
  min-height: 50px;
}








#s-51067a2d-ab5b-409e-a1d0-aba1eca4c113 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51067a2d-ab5b-409e-a1d0-aba1eca4c113.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-827be81c-6646-4415-8815-85d1923fc5e4 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-4373db91-bab1-45cd-9411-c5f1f49263ce {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 75px;
background-color: rgba(252, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-4373db91-bab1-45cd-9411-c5f1f49263ce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4373db91-bab1-45cd-9411-c5f1f49263ce:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4373db91-bab1-45cd-9411-c5f1f49263ce-root {
    text-align: center;
  }


#s-4373db91-bab1-45cd-9411-c5f1f49263ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4373db91-bab1-45cd-9411-c5f1f49263ce-root {
    text-align: center;
  }


#s-4373db91-bab1-45cd-9411-c5f1f49263ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4373db91-bab1-45cd-9411-c5f1f49263ce-root {
    text-align: center;
  }


#s-4373db91-bab1-45cd-9411-c5f1f49263ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4373db91-bab1-45cd-9411-c5f1f49263ce-root {
    text-align: center;
  }


#s-4373db91-bab1-45cd-9411-c5f1f49263ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4373db91-bab1-45cd-9411-c5f1f49263ce-root {
    text-align: center;
  }


#s-4373db91-bab1-45cd-9411-c5f1f49263ce.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-c407c1a1-3f87-4391-b952-8258ca1a4c6e {
  min-height: 50px;
}








#s-c407c1a1-3f87-4391-b952-8258ca1a4c6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c407c1a1-3f87-4391-b952-8258ca1a4c6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8d07c84-4142-4643-a6af-7bc31d162802 {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 7px;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 700px;
}

.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-4327ecc3-1193-4e4a-b344-c70b9e04f720 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}

#s-4327ecc3-1193-4e4a-b344-c70b9e04f720 .shogun-heading-component h1 {
  color: rgba(252, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


@media (max-width: 767px){#s-4327ecc3-1193-4e4a-b344-c70b9e04f720 .shogun-heading-component h1 {
  color: rgba(252, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}
#s-0ed062a5-f90a-4ad4-bfb1-69264aebe599 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -10px;
margin-right: auto;
max-width: 500px;
}

#s-b7314b9d-0345-4625-8003-870b89d4465d {
  background-repeat: repeat;
background-size: contain;
min-height: 500px;
background-position: center center;
background-attachment: scroll;
}








#s-b7314b9d-0345-4625-8003-870b89d4465d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7314b9d-0345-4625-8003-870b89d4465d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}








#s-e15d494c-cd1e-4271-9d9b-7561b5144d16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e15d494c-cd1e-4271-9d9b-7561b5144d16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf49937-d108-44d2-80c8-a1ac87af1d4b {
  background-image: url(https://i.shgcdn.com/6608c3d5-2454-41d4-9cab-e3a16a65d662/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-position: center center;
}

#s-0bf49937-d108-44d2-80c8-a1ac87af1d4b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-0ed97efb-9e7b-4ff9-b2c0-0d6dce6c216f {
  min-height: 50px;
}








#s-0ed97efb-9e7b-4ff9-b2c0-0d6dce6c216f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ed97efb-9e7b-4ff9-b2c0-0d6dce6c216f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b01ddea-2d51-4bf3-b1b3-93397660128e {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
aspect-ratio: 2000/1333;
text-align: center;
}





  #s-3b01ddea-2d51-4bf3-b1b3-93397660128e img.shogun-image,
  #s-3b01ddea-2d51-4bf3-b1b3-93397660128e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3b01ddea-2d51-4bf3-b1b3-93397660128e {
    width: 100%;
    height: auto;
  }



  #s-3b01ddea-2d51-4bf3-b1b3-93397660128e img.shogun-image {
    

    
    
    
  }


#s-3b01ddea-2d51-4bf3-b1b3-93397660128e .shogun-image-content {
  
    align-items: center;
  
}

#s-264348c3-f930-4a48-b0e0-8f522ee38506 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-264348c3-f930-4a48-b0e0-8f522ee38506 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



.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-0778c06f-40bb-4ca9-9d64-9ef0678af582 {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
}

@media (min-width: 0px) {
[id="s-0778c06f-40bb-4ca9-9d64-9ef0678af582"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0778c06f-40bb-4ca9-9d64-9ef0678af582"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-0778c06f-40bb-4ca9-9d64-9ef0678af582"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-0778c06f-40bb-4ca9-9d64-9ef0678af582"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-c083d318-75d3-4ac4-bc52-62b762cafcc8 {
  margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 700px;
}

#s-f4db24ec-ff56-489a-898c-67ba8ed12986 {
  margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 700px;
}

#s-e3dcb7ca-7ce1-4ba5-b97f-8fcf948bb1ba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e3dcb7ca-7ce1-4ba5-b97f-8fcf948bb1ba .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-5d1bca07-754b-481d-af06-2551ff3ea1a8 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 900px;
text-align: left;
background-color: rgba(230, 1, 19, 1);
}

#s-5d1bca07-754b-481d-af06-2551ff3ea1a8 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-4f7cf56e-d0e9-4771-b682-bafb8a96c00e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4f7cf56e-d0e9-4771-b682-bafb8a96c00e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-9e653b66-fd67-4a50-bc3f-04a227227341 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 900px;
text-align: left;
background-color: rgba(0, 140, 213, 1);
}

#s-9e653b66-fd67-4a50-bc3f-04a227227341 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-bbbd16c5-b270-4cc1-afb1-9af53e4fa227 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bbbd16c5-b270-4cc1-afb1-9af53e4fa227 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-c8173543-bf8f-4647-b05d-875dccd52bc4 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 900px;
text-align: left;
background-color: rgba(145, 7, 130, 1);
}

#s-c8173543-bf8f-4647-b05d-875dccd52bc4 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-f13a7a37-e429-4bd8-b884-49dc38804e0d {
  min-height: 50px;
}








#s-f13a7a37-e429-4bd8-b884-49dc38804e0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f13a7a37-e429-4bd8-b884-49dc38804e0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d0fc3f4d-302c-4c68-aad0-250af0131de3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d0fc3f4d-302c-4c68-aad0-250af0131de3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-da76c3cf-db53-4ada-915d-91f547d1050e {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
aspect-ratio: 2000/1333;
text-align: center;
}





  #s-da76c3cf-db53-4ada-915d-91f547d1050e img.shogun-image,
  #s-da76c3cf-db53-4ada-915d-91f547d1050e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-da76c3cf-db53-4ada-915d-91f547d1050e {
    width: 100%;
    height: auto;
  }



  #s-da76c3cf-db53-4ada-915d-91f547d1050e img.shogun-image {
    

    
    
    
  }


#s-da76c3cf-db53-4ada-915d-91f547d1050e .shogun-image-content {
  
    align-items: center;
  
}

#s-0bf07e70-8b29-4e4f-8cc4-24291cc25522 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0bf07e70-8b29-4e4f-8cc4-24291cc25522 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-2552c4d9-57b7-40d1-8b46-424f7bccfe20 {
  min-height: 50px;
}








#s-2552c4d9-57b7-40d1-8b46-424f7bccfe20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2552c4d9-57b7-40d1-8b46-424f7bccfe20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe741047-21be-41aa-b5da-ff9b885d0c40 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 700px;
text-align: left;
background-color: rgba(230, 1, 19, 1);
}

#s-fe741047-21be-41aa-b5da-ff9b885d0c40 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-f01d744b-0b4a-43fc-8daf-3eac474e95fa {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-156070ef-1a0d-464d-af60-1da1ff89e39d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-156070ef-1a0d-464d-af60-1da1ff89e39d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27705f57-30f7-4ac1-b3e4-8bc8843d07f5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  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;
  height: inherit;
  position: relative;
}

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

.shg-imageV2-content {
  text-align: initial;
}

.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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-e2860852-371c-431c-ba52-5e36f9f92c90 {
  max-width: 350px;
aspect-ratio: 1279/760;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}





  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image,
  #s-e2860852-371c-431c-ba52-5e36f9f92c90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 {
    width: 100%;
    height: auto;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
    
    
  }


.s-e2860852-371c-431c-ba52-5e36f9f92c90 .shogun-image-content {
  
    align-items: center;
  
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e2860852-371c-431c-ba52-5e36f9f92c90 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
      position: relative;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image,
  #s-e2860852-371c-431c-ba52-5e36f9f92c90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 {
    width: 100%;
    height: auto;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
    
    
  }


.s-e2860852-371c-431c-ba52-5e36f9f92c90 .shogun-image-content {
  
    align-items: center;
  
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e2860852-371c-431c-ba52-5e36f9f92c90 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
      position: relative;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image,
  #s-e2860852-371c-431c-ba52-5e36f9f92c90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 {
    width: 100%;
    height: auto;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
    
    
  }


.s-e2860852-371c-431c-ba52-5e36f9f92c90 .shogun-image-content {
  
    align-items: center;
  
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e2860852-371c-431c-ba52-5e36f9f92c90 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
      position: relative;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image,
  #s-e2860852-371c-431c-ba52-5e36f9f92c90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 {
    width: 100%;
    height: auto;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
    
    
  }


.s-e2860852-371c-431c-ba52-5e36f9f92c90 .shogun-image-content {
  
    align-items: center;
  
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e2860852-371c-431c-ba52-5e36f9f92c90 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
      position: relative;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image,
  #s-e2860852-371c-431c-ba52-5e36f9f92c90 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 {
    width: 100%;
    height: auto;
  }

  #s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
    
    
  }


.s-e2860852-371c-431c-ba52-5e36f9f92c90 .shogun-image-content {
  
    align-items: center;
  
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e2860852-371c-431c-ba52-5e36f9f92c90 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container {
      position: relative;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e2860852-371c-431c-ba52-5e36f9f92c90 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-56856c4b-dca8-405a-b37c-760af37a4bb3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-ab89b358-31da-4e13-9eec-fa274b265247 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ab89b358-31da-4e13-9eec-fa274b265247"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
  max-width: 1279px;
aspect-ratio: 1279/760;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}





  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image,
  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
    width: 100%;
    height: auto;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
    
    
  }


.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
      position: relative;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image,
  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
    width: 100%;
    height: auto;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
    
    
  }


.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
      position: relative;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image,
  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
    width: 100%;
    height: auto;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
    
    
  }


.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
      position: relative;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image,
  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
    width: 100%;
    height: auto;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
    
    
  }


.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
      position: relative;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image,
  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
    width: 100%;
    height: auto;
  }

  #s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
    
    
  }


.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 .shogun-image-content {
  
    align-items: center;
  
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 {
      --shg-aspect-ratio: calc(1279/760); 
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container {
      position: relative;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0cc3aa23-85ee-40cf-965e-4f828db50fd5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-dd38793c-859d-4536-ae4e-f5d0b62ac36c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-713f9834-564b-473a-aeb5-11f446c60b73 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-713f9834-564b-473a-aeb5-11f446c60b73"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
  max-width: 1278px;
aspect-ratio: 1278/760;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}





  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image,
  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
    width: 100%;
    height: auto;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
    
    
  }


.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shogun-image-content {
  
    align-items: center;
  
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
      --shg-aspect-ratio: calc(1278/760); 
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
      position: relative;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image,
  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
    width: 100%;
    height: auto;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
    
    
  }


.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shogun-image-content {
  
    align-items: center;
  
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
      --shg-aspect-ratio: calc(1278/760); 
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
      position: relative;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image,
  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
    width: 100%;
    height: auto;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
    
    
  }


.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shogun-image-content {
  
    align-items: center;
  
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
      --shg-aspect-ratio: calc(1278/760); 
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
      position: relative;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image,
  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
    width: 100%;
    height: auto;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
    
    
  }


.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shogun-image-content {
  
    align-items: center;
  
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
      --shg-aspect-ratio: calc(1278/760); 
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
      position: relative;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image,
  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
    width: 100%;
    height: auto;
  }

  #s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
    
    
  }


.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f .shogun-image-content {
  
    align-items: center;
  
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f {
      --shg-aspect-ratio: calc(1278/760); 
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container {
      position: relative;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef7760df-5d02-47f1-b6ef-3f6d6d84d94f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-48f56fe8-f2b3-4fc9-b604-91f1be7abf0d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-8d022a7d-d0ba-49f7-87a0-9166b76674c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d022a7d-d0ba-49f7-87a0-9166b76674c8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-21377fd6-9af7-4489-a573-dbffaf4c59ce {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-c528c293-4068-4fbe-abd3-a69bcd8490c2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c528c293-4068-4fbe-abd3-a69bcd8490c2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 45px;
  
  
  
}



#s-17ca5b67-5171-46ec-b1a9-f835af50c3ab {
  min-height: 50px;
}








#s-17ca5b67-5171-46ec-b1a9-f835af50c3ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17ca5b67-5171-46ec-b1a9-f835af50c3ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb43ec98-ca5d-44fe-9d56-a448ea8e37bb {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 700px;
text-align: left;
background-color: rgba(0, 140, 213, 1);
}

#s-cb43ec98-ca5d-44fe-9d56-a448ea8e37bb .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-ab736218-0cc7-4637-9178-5ac6853f1d5b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 0px;
padding-right: 2%;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 img.shogun-image,
  #s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 {
    width: 100%;
    height: auto;
  }



  #s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 img.shogun-image {
    

    
    
    
  }


#s-1a5acd25-b8f3-4350-b2b0-42ec51860e19 .shogun-image-content {
  
    align-items: center;
  
}

#s-73a77cda-5a08-4db9-a332-0c47a23deb15 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73a77cda-5a08-4db9-a332-0c47a23deb15 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-08247868-7e03-43dd-9df6-af9d9b6c4a77 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}








#s-08247868-7e03-43dd-9df6-af9d9b6c4a77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08247868-7e03-43dd-9df6-af9d9b6c4a77.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
  margin-top: 15px;
margin-bottom: 15px;
max-width: 650px;
aspect-ratio: 1414/307;
text-align: center;
}





  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image,
  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
    width: 100%;
    height: auto;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
    
    
  }


.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
      --shg-aspect-ratio: calc(1414/307); 
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
      position: relative;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image,
  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
    width: 100%;
    height: auto;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
    
    
  }


.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
      --shg-aspect-ratio: calc(1414/307); 
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
      position: relative;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image,
  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
    width: 100%;
    height: auto;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
    
    
  }


.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
      --shg-aspect-ratio: calc(1414/307); 
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
      position: relative;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image,
  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
    width: 100%;
    height: auto;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
    
    
  }


.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
      --shg-aspect-ratio: calc(1414/307); 
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
      position: relative;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image,
  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
    width: 100%;
    height: auto;
  }

  #s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
    
    
  }


.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 {
      --shg-aspect-ratio: calc(1414/307); 
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container {
      position: relative;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f3418a01-f1f3-428c-9f93-6533e78d6ec0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-dde16932-82dd-43d0-b54f-2ae6ecbfbba2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-04bdb531-6bfd-485b-83d5-df6a2d2ccc14 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-04bdb531-6bfd-485b-83d5-df6a2d2ccc14 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-8eb15b25-863b-41a8-bec6-4fec6ef40b01 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}








#s-8eb15b25-863b-41a8-bec6-4fec6ef40b01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8eb15b25-863b-41a8-bec6-4fec6ef40b01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
  margin-top: 15px;
margin-bottom: 15px;
max-width: 650px;
aspect-ratio: 1789/282;
text-align: center;
}





  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image,
  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
    width: 100%;
    height: auto;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
    
    
  }


.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shogun-image-content {
  
    align-items: center;
  
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
      --shg-aspect-ratio: calc(1789/282); 
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
      position: relative;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image,
  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
    width: 100%;
    height: auto;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
    
    
  }


.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shogun-image-content {
  
    align-items: center;
  
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
      --shg-aspect-ratio: calc(1789/282); 
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
      position: relative;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image,
  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
    width: 100%;
    height: auto;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
    
    
  }


.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shogun-image-content {
  
    align-items: center;
  
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
      --shg-aspect-ratio: calc(1789/282); 
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
      position: relative;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image,
  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
    width: 100%;
    height: auto;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
    
    
  }


.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shogun-image-content {
  
    align-items: center;
  
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
      --shg-aspect-ratio: calc(1789/282); 
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
      position: relative;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image,
  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
    width: 100%;
    height: auto;
  }

  #s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
    
    
  }


.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c .shogun-image-content {
  
    align-items: center;
  
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c {
      --shg-aspect-ratio: calc(1789/282); 
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container {
      position: relative;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf2db1c1-a45b-43ff-bf44-a1242d1dc68c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b0c49c0a-2ec2-4930-b2ae-79ab1574352d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-cef4f60f-8a22-415d-885e-f8f9312a9bd4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cef4f60f-8a22-415d-885e-f8f9312a9bd4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-2b6ebe83-75df-4dac-ab21-769de7bd5223 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}








#s-2b6ebe83-75df-4dac-ab21-769de7bd5223 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b6ebe83-75df-4dac-ab21-769de7bd5223.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
  margin-top: 15px;
margin-bottom: 15px;
max-width: 650px;
aspect-ratio: 1762/347;
text-align: center;
}





  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image,
  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
    width: 100%;
    height: auto;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
    
    
  }


.s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
      --shg-aspect-ratio: calc(1762/347); 
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
      position: relative;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image,
  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
    width: 100%;
    height: auto;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
    
    
  }


.s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
      --shg-aspect-ratio: calc(1762/347); 
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
      position: relative;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image,
  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
    width: 100%;
    height: auto;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
    
    
  }


.s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
      --shg-aspect-ratio: calc(1762/347); 
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
      position: relative;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image,
  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
    width: 100%;
    height: auto;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
    
    
  }


.s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
      --shg-aspect-ratio: calc(1762/347); 
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
      position: relative;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image,
  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
    width: 100%;
    height: auto;
  }

  #s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
    
    
  }


.s-cff4f578-d35b-4773-a423-ab0280ca95b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 {
      --shg-aspect-ratio: calc(1762/347); 
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container {
      position: relative;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cff4f578-d35b-4773-a423-ab0280ca95b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ed0e9423-11c1-46a5-a8ed-30ef34f8360c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-4746ab4c-35d3-4f81-88ea-a5ba348e01d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4746ab4c-35d3-4f81-88ea-a5ba348e01d3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-43ee2cf6-2e75-41c2-8d6d-9be7c183b19c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}








#s-43ee2cf6-2e75-41c2-8d6d-9be7c183b19c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43ee2cf6-2e75-41c2-8d6d-9be7c183b19c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b230931f-6079-4180-93f2-386ce3e433c5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-54d70547-3b21-4823-8f2a-17951faa8745 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 650px;
}

@media (min-width: 0px) {
[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 6.0px);
}

[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 6.0px);
}

[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 6.0px);
}

[id="s-54d70547-3b21-4823-8f2a-17951faa8745"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 6.0px);
}

}

#s-75907e6f-7790-4594-9266-0f456d239a1d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 700px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image,
  #s-75907e6f-7790-4594-9266-0f456d239a1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d {
    width: 100%;
    height: auto;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
    
    
  }


.s-75907e6f-7790-4594-9266-0f456d239a1d .shogun-image-content {
  
    align-items: center;
  
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75907e6f-7790-4594-9266-0f456d239a1d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
      position: relative;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image,
  #s-75907e6f-7790-4594-9266-0f456d239a1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d {
    width: 100%;
    height: auto;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
    
    
  }


.s-75907e6f-7790-4594-9266-0f456d239a1d .shogun-image-content {
  
    align-items: center;
  
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75907e6f-7790-4594-9266-0f456d239a1d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
      position: relative;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image,
  #s-75907e6f-7790-4594-9266-0f456d239a1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d {
    width: 100%;
    height: auto;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
    
    
  }


.s-75907e6f-7790-4594-9266-0f456d239a1d .shogun-image-content {
  
    align-items: center;
  
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75907e6f-7790-4594-9266-0f456d239a1d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
      position: relative;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image,
  #s-75907e6f-7790-4594-9266-0f456d239a1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d {
    width: 100%;
    height: auto;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
    
    
  }


.s-75907e6f-7790-4594-9266-0f456d239a1d .shogun-image-content {
  
    align-items: center;
  
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75907e6f-7790-4594-9266-0f456d239a1d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
      position: relative;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image,
  #s-75907e6f-7790-4594-9266-0f456d239a1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d {
    width: 100%;
    height: auto;
  }

  #s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
    
    
  }


.s-75907e6f-7790-4594-9266-0f456d239a1d .shogun-image-content {
  
    align-items: center;
  
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-75907e6f-7790-4594-9266-0f456d239a1d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container {
      position: relative;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-75907e6f-7790-4594-9266-0f456d239a1d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-83362de4-95ff-43fe-8b46-1c99409cf58f {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 700px;
aspect-ratio: 2408/908;
text-align: center;
}





  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image,
  #s-83362de4-95ff-43fe-8b46-1c99409cf58f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f {
    width: 100%;
    height: auto;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
    
    
  }


.s-83362de4-95ff-43fe-8b46-1c99409cf58f .shogun-image-content {
  
    align-items: center;
  
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83362de4-95ff-43fe-8b46-1c99409cf58f {
      --shg-aspect-ratio: calc(2408/908); 
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
      position: relative;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image,
  #s-83362de4-95ff-43fe-8b46-1c99409cf58f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f {
    width: 100%;
    height: auto;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
    
    
  }


.s-83362de4-95ff-43fe-8b46-1c99409cf58f .shogun-image-content {
  
    align-items: center;
  
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83362de4-95ff-43fe-8b46-1c99409cf58f {
      --shg-aspect-ratio: calc(2408/908); 
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
      position: relative;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image,
  #s-83362de4-95ff-43fe-8b46-1c99409cf58f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f {
    width: 100%;
    height: auto;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
    
    
  }


.s-83362de4-95ff-43fe-8b46-1c99409cf58f .shogun-image-content {
  
    align-items: center;
  
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83362de4-95ff-43fe-8b46-1c99409cf58f {
      --shg-aspect-ratio: calc(2408/908); 
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
      position: relative;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image,
  #s-83362de4-95ff-43fe-8b46-1c99409cf58f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f {
    width: 100%;
    height: auto;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
    
    
  }


.s-83362de4-95ff-43fe-8b46-1c99409cf58f .shogun-image-content {
  
    align-items: center;
  
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83362de4-95ff-43fe-8b46-1c99409cf58f {
      --shg-aspect-ratio: calc(2408/908); 
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
      position: relative;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image,
  #s-83362de4-95ff-43fe-8b46-1c99409cf58f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f {
    width: 100%;
    height: auto;
  }

  #s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
    
    
  }


.s-83362de4-95ff-43fe-8b46-1c99409cf58f .shogun-image-content {
  
    align-items: center;
  
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83362de4-95ff-43fe-8b46-1c99409cf58f {
      --shg-aspect-ratio: calc(2408/908); 
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container {
      position: relative;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83362de4-95ff-43fe-8b46-1c99409cf58f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a77aaaa8-bcd9-4015-a35c-42f9c73e1488 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a77aaaa8-bcd9-4015-a35c-42f9c73e1488 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 1px;
  
  
  
}



#s-56986ce4-a298-4fd7-800d-062d4eb1bef9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-56986ce4-a298-4fd7-800d-062d4eb1bef9 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-398dc92f-529f-430b-8c48-b0ad933bdc1b {
  min-height: 50px;
}








#s-398dc92f-529f-430b-8c48-b0ad933bdc1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-398dc92f-529f-430b-8c48-b0ad933bdc1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e13deabb-1ad7-40ec-b40d-b5680480a31c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 2%;
padding-bottom: 15px;
padding-right: 2%;
max-width: 700px;
text-align: left;
background-color: rgba(145, 7, 130, 1);
}

#s-e13deabb-1ad7-40ec-b40d-b5680480a31c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-99952143-e097-4509-8888-2f14fec5edf0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-585c5467-9c76-41f2-a713-cc0c2a242bcd {
  margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 700px;
aspect-ratio: 16/9;
text-align: center;
background-color: rgba(99, 102, 106, 1);
}





  #s-585c5467-9c76-41f2-a713-cc0c2a242bcd img.shogun-image,
  #s-585c5467-9c76-41f2-a713-cc0c2a242bcd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-585c5467-9c76-41f2-a713-cc0c2a242bcd {
    width: 100%;
    height: auto;
  }



  #s-585c5467-9c76-41f2-a713-cc0c2a242bcd img.shogun-image {
    

    
    
    
  }


#s-585c5467-9c76-41f2-a713-cc0c2a242bcd .shogun-image-content {
  
    align-items: center;
  
}

#s-df136d1f-7251-4160-90a0-f381f9a18937 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df136d1f-7251-4160-90a0-f381f9a18937 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ff9bbf2e-b207-44bf-b11d-5247df503c79 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
max-width: 700px;
}

#s-90507a03-c392-4a09-9ec1-a579c4311e09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-90507a03-c392-4a09-9ec1-a579c4311e09 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ed0634c4-efa9-41a2-aa05-a15724cbf4b6 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-9da9be53-3a90-4acf-afc6-3a29e56aafb6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9da9be53-3a90-4acf-afc6-3a29e56aafb6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ea932d87-ae4e-4fbf-a038-7b8febae537b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-4497b4e8-862c-42a6-8197-ea62445b8a93 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4497b4e8-862c-42a6-8197-ea62445b8a93 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-45803b4d-6e6b-4be2-9a2b-a9a864b7c258 {
  margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 700px;
}

#s-d4177c1e-a429-4639-9c6b-4a9e01d9ffbe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d4177c1e-a429-4639-9c6b-4a9e01d9ffbe .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-780287f0-90ea-4e9c-ac1b-0a233afc30b7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 900px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}

#s-780287f0-90ea-4e9c-ac1b-0a233afc30b7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


@media (max-width: 767px){#s-780287f0-90ea-4e9c-ac1b-0a233afc30b7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}
#s-298d1fc3-9914-4172-b533-2f1702c0f78b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-298d1fc3-9914-4172-b533-2f1702c0f78b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
aspect-ratio: 2000/1333;
text-align: center;
}





  #s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 img.shogun-image,
  #s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 {
    width: 100%;
    height: auto;
  }



  #s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 img.shogun-image {
    

    
    
    
  }


#s-634dbbf7-e0e4-47c8-9fa7-b822fd9555e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-789064da-bc04-4c08-9b00-b3f1d1d9178e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
background-color: rgba(0, 0, 0, 1);
}








#s-789064da-bc04-4c08-9b00-b3f1d1d9178e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-789064da-bc04-4c08-9b00-b3f1d1d9178e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a951d94f-5fec-403b-9236-ec8eb3255391 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: -5px;
margin-right: auto;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
max-width: 700px;
}

#s-db4213e6-d7ed-47f4-bb29-d6fb39f342c4 {
  min-height: 50px;
}








#s-db4213e6-d7ed-47f4-bb29-d6fb39f342c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db4213e6-d7ed-47f4-bb29-d6fb39f342c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68b82000-755e-4dc3-bdd0-9bac46976708 {
  min-height: 50px;
}








#s-68b82000-755e-4dc3-bdd0-9bac46976708 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68b82000-755e-4dc3-bdd0-9bac46976708.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-805f3a34-6fd8-4627-9a77-c50258e19611 {
  min-height: 50px;
}








#s-805f3a34-6fd8-4627-9a77-c50258e19611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-805f3a34-6fd8-4627-9a77-c50258e19611.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd89fcbb-b2de-4f02-ad16-114d660d4a92 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-8a10cdc0-58fd-412a-aa0e-508239d72544 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 75px;
background-color: rgba(252, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-8a10cdc0-58fd-412a-aa0e-508239d72544:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8a10cdc0-58fd-412a-aa0e-508239d72544:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8a10cdc0-58fd-412a-aa0e-508239d72544-root {
    text-align: center;
  }


#s-8a10cdc0-58fd-412a-aa0e-508239d72544.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8a10cdc0-58fd-412a-aa0e-508239d72544-root {
    text-align: center;
  }


#s-8a10cdc0-58fd-412a-aa0e-508239d72544.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8a10cdc0-58fd-412a-aa0e-508239d72544-root {
    text-align: center;
  }


#s-8a10cdc0-58fd-412a-aa0e-508239d72544.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8a10cdc0-58fd-412a-aa0e-508239d72544-root {
    text-align: center;
  }


#s-8a10cdc0-58fd-412a-aa0e-508239d72544.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8a10cdc0-58fd-412a-aa0e-508239d72544-root {
    text-align: center;
  }


#s-8a10cdc0-58fd-412a-aa0e-508239d72544.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-f838cc07-31fc-46ad-a536-7452257538e5 {
  min-height: 50px;
}








#s-f838cc07-31fc-46ad-a536-7452257538e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f838cc07-31fc-46ad-a536-7452257538e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31d405e1-5f1f-4851-a966-aed371c2b554 {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 7px;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 700px;
}

#s-cc3c2c76-3ada-48ce-b6c0-89632c79c832 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -10px;
margin-right: auto;
max-width: 500px;
}

#s-f9a8b9a5-aea9-49bd-899f-e17c70f61b06 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 700px;
}

#s-a4be572d-ed31-488f-9efc-e75c19282733 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a4be572d-ed31-488f-9efc-e75c19282733 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-98759ec3-26d4-44c3-8b87-ef98b14a015c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
max-width: 700px;
text-align: left;
background-color: rgba(255, 255, 255, 1);
}

#s-98759ec3-26d4-44c3-8b87-ef98b14a015c .shogun-heading-component h1 {
  color: rgba(30, 63, 63, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-b4f9d48a-2621-43ef-a8a2-14c621efc20f {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 700px;
background-color: rgba(255, 255, 255, 1);
}

#s-a0e531d6-b5b7-4215-9835-9e2ccbe9263b {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}








#s-a0e531d6-b5b7-4215-9835-9e2ccbe9263b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0e531d6-b5b7-4215-9835-9e2ccbe9263b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
  border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 1200px;
aspect-ratio: 1200/552;
text-align: center;
}





  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image,
  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
    width: 100%;
    height: auto;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
    
    
  }


.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shogun-image-content {
  
    align-items: center;
  
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
      --shg-aspect-ratio: calc(1200/552); 
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
      position: relative;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image,
  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
    width: 100%;
    height: auto;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
    
    
  }


.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shogun-image-content {
  
    align-items: center;
  
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
      --shg-aspect-ratio: calc(1200/552); 
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
      position: relative;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image,
  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
    width: 100%;
    height: auto;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
    
    
  }


.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shogun-image-content {
  
    align-items: center;
  
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
      --shg-aspect-ratio: calc(1200/552); 
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
      position: relative;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image,
  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
    width: 100%;
    height: auto;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
    
    
  }


.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shogun-image-content {
  
    align-items: center;
  
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
      --shg-aspect-ratio: calc(1200/552); 
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
      position: relative;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image,
  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
    width: 100%;
    height: auto;
  }

  #s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
    
    
  }


.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a .shogun-image-content {
  
    align-items: center;
  
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a {
      --shg-aspect-ratio: calc(1200/552); 
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container {
      position: relative;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d59a00a-5d13-4f2b-8c9f-c679d459c97a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-c6808211-1531-4a0e-ab62-0132d1512cd4 {
  margin-left: auto;
margin-right: auto;
padding-top: 1%;
padding-left: 2%;
padding-bottom: 1%;
padding-right: 2%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-12e594a9-4116-4829-8726-c62c451930bc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-12e594a9-4116-4829-8726-c62c451930bc .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-0d5844fb-2373-434a-b67f-c8a84373a3bd {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

/*
  $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}
