.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-533927fb-7174-4d1b-8847-9f2569112051 {
  min-height: 50px;
}








#s-533927fb-7174-4d1b-8847-9f2569112051 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-533927fb-7174-4d1b-8847-9f2569112051.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-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 {
  margin-left: auto;
margin-right: auto;
border-color: #000;
border-style: solid;
max-width: 900px;
aspect-ratio: 16/9;
text-align: center;
}
@media (max-width: 767px){#s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 {
  
}
}




  #s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 img.shogun-image,
  #s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 {
    width: 100%;
    height: auto;
  }



  #s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 img.shogun-image {
    

    
    
    
  }


#s-25a3a3f5-aa56-4d74-a275-34e7085cc9b2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

.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-8febe41d-08c8-481c-bc33-468cf8bba95d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-8febe41d-08c8-481c-bc33-468cf8bba95d {
  display: none;
}
#s-8febe41d-08c8-481c-bc33-468cf8bba95d, #wrap-s-8febe41d-08c8-481c-bc33-468cf8bba95d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8febe41d-08c8-481c-bc33-468cf8bba95d {
  display: none;
}
#s-8febe41d-08c8-481c-bc33-468cf8bba95d, #wrap-s-8febe41d-08c8-481c-bc33-468cf8bba95d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8febe41d-08c8-481c-bc33-468cf8bba95d {
  display: none;
}
#s-8febe41d-08c8-481c-bc33-468cf8bba95d, #wrap-s-8febe41d-08c8-481c-bc33-468cf8bba95d { display:none !important; }}@media (max-width: 767px){#s-8febe41d-08c8-481c-bc33-468cf8bba95d {
  display: none;
}
#s-8febe41d-08c8-481c-bc33-468cf8bba95d, #wrap-s-8febe41d-08c8-481c-bc33-468cf8bba95d { display:none !important; }}
#s-8febe41d-08c8-481c-bc33-468cf8bba95d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}



.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-2ebda39c-52d5-4282-a582-5abb7c1c0589 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 700px;
}

#s-fcd26253-46cc-4ce7-b77c-4cc2093ee223 {
  margin-top: 0px;
text-align: center;
}

#s-fcd26253-46cc-4ce7-b77c-4cc2093ee223 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}



#s-03f797cf-bd79-4db0-a83a-0aa45137b6a9 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

.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-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db {
  margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 72px;
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-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db-root {
    text-align: center;
  }


#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db-root {
    text-align: center;
  }


#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db-root {
    text-align: center;
  }


#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db-root {
    text-align: center;
  }


#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db-root {
    text-align: center;
  }


#s-c57d9ddc-9bed-4ecb-8885-0f9c488fd6db.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-5e19bca4-5e33-4c03-9421-64c3dfcd6684 {
  margin-top: 3px;
margin-left: auto;
margin-bottom: 3px;
margin-right: auto;
max-width: 700px;
}

#s-f3301c22-47d9-451a-ba3c-f56b269487cc {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-7e6036eb-dd5e-4095-ae42-569b45bf8ab9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e6036eb-dd5e-4095-ae42-569b45bf8ab9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 5px;
  
  
  
}



#s-07f9318d-09c2-4996-98dd-d36e85a632c1 {
  min-height: 50px;
background-color: rgba(205, 205, 205, 1);
}








#s-07f9318d-09c2-4996-98dd-d36e85a632c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07f9318d-09c2-4996-98dd-d36e85a632c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff89e303-292b-4541-abea-492ac890800f {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
aspect-ratio: 4000/2666;
text-align: center;
background-color: rgba(205, 205, 205, 1);
}





  #s-ff89e303-292b-4541-abea-492ac890800f img.shogun-image,
  #s-ff89e303-292b-4541-abea-492ac890800f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff89e303-292b-4541-abea-492ac890800f {
    width: 100%;
    height: auto;
  }



  #s-ff89e303-292b-4541-abea-492ac890800f img.shogun-image {
    

    
    
    
  }


#s-ff89e303-292b-4541-abea-492ac890800f .shogun-image-content {
  
    align-items: center;
  
}

#s-faf40ba9-51a6-4370-b70d-6d87bd4d56c3 {
  margin-top: 0px;
text-align: center;
background-color: rgba(205, 205, 205, 1);
}

#s-faf40ba9-51a6-4370-b70d-6d87bd4d56c3 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}



#s-d9c3b04a-fe5a-434b-ab2b-d58cc2ecc378 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(205, 205, 205, 1);
}

#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad {
  margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
border-radius: 72px;
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-6773f515-a1f5-44ec-8eec-38cd6b5bfbad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad-root {
    text-align: center;
  }


#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad-root {
    text-align: center;
  }


#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad-root {
    text-align: center;
  }


#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad-root {
    text-align: center;
  }


#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad-root {
    text-align: center;
  }


#s-6773f515-a1f5-44ec-8eec-38cd6b5bfbad.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-816c6152-ebac-498c-a482-f38d4add9a74 {
  margin-top: 3px;
margin-left: auto;
margin-bottom: 3px;
margin-right: auto;
max-width: 700px;
}

#s-f54b5df3-19f7-4e0a-b724-25362464d200 {
  margin-top: 5px;
margin-bottom: 5px;
}

#s-2fc68dbe-3735-4b91-8ab7-49a59701cdfd {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(205, 205, 205, 1);
}








#s-2fc68dbe-3735-4b91-8ab7-49a59701cdfd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fc68dbe-3735-4b91-8ab7-49a59701cdfd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c53f57c8-0eb6-43d8-8ed4-e0d398b4675b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c53f57c8-0eb6-43d8-8ed4-e0d398b4675b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 5px;
  
  
  
}



#s-e03d191c-535f-4918-a721-7ced469f8086 {
  background-size: contain;
min-height: 500px;
background-position: center center;
background-repeat: repeat;
background-color: rgba(0, 0, 0, 1);
}








#s-e03d191c-535f-4918-a721-7ced469f8086 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e03d191c-535f-4918-a721-7ced469f8086.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0b0c7640-63eb-45a3-9ff5-1eb985bae097 {
  padding-top: 15px;
padding-bottom: 15px;
text-align: center;
}

#s-0b0c7640-63eb-45a3-9ff5-1eb985bae097 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans";
  font-style:  normal ;
  font-size: 38px;
  
  
  
}



.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-c6db5a57-fc50-4a07-a10d-a0fa4903df02 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c6db5a57-fc50-4a07-a10d-a0fa4903df02"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c6db5a57-fc50-4a07-a10d-a0fa4903df02"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c6db5a57-fc50-4a07-a10d-a0fa4903df02"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c6db5a57-fc50-4a07-a10d-a0fa4903df02"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.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-7035850c-7236-46ce-a59e-76b6709dff68 {
  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-926f69d9-ea06-405f-a4ae-64b4ef8e7655 {
  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-d1d5c16b-e0f7-417d-9fe4-f36a0f29a9b8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1d5c16b-e0f7-417d-9fe4-f36a0f29a9b8 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-14570ad7-32e0-480c-a330-4caf84f3847f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
border-radius: 0px;
max-width: 900px;
background-color: rgba(208, 21, 21, 1);
}

#s-2a4f1ffb-0590-46f6-8b22-05ba92758173 {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
max-width: 900px;
background-color: rgba(0, 0, 0, 1);
}

#s-80ec47ad-341d-4127-b499-600fcb74f8df {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80ec47ad-341d-4127-b499-600fcb74f8df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-e8caeac4-9ded-4c32-9fcf-bcaf82a23363 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
max-width: 700px;
background-color: rgba(208, 21, 21, 1);
}

#s-fc4b579c-5cdc-4610-b078-31481e32b286 {
  min-height: 500px;
background-position: center center;
background-repeat: repeat;
background-color: rgba(0, 0, 0, 1);
}








#s-fc4b579c-5cdc-4610-b078-31481e32b286 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc4b579c-5cdc-4610-b078-31481e32b286.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63b6f256-eee6-4019-8a64-0177fae9d298 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-1511c72f-ff04-4cfb-b813-a48315195821 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

@media (min-width: 0px) {
[id="s-1511c72f-ff04-4cfb-b813-a48315195821"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1511c72f-ff04-4cfb-b813-a48315195821"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1511c72f-ff04-4cfb-b813-a48315195821"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1511c72f-ff04-4cfb-b813-a48315195821"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b056087d-cf5f-4235-bf76-1b08b0918cbb {
  text-align: center;
}







  #s-b056087d-cf5f-4235-bf76-1b08b0918cbb img.shogun-image {
    

    
    
    
  }


#s-b056087d-cf5f-4235-bf76-1b08b0918cbb .shogun-image-content {
  
    align-items: center;
  
}

#s-7f37a795-5390-43c0-81cf-602c390b293d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-cf64337a-ef1e-410f-88e8-6bed0170756d {
  text-align: center;
}







  #s-cf64337a-ef1e-410f-88e8-6bed0170756d img.shogun-image {
    

    
    
    
  }


#s-cf64337a-ef1e-410f-88e8-6bed0170756d .shogun-image-content {
  
    align-items: center;
  
}

#s-a8945820-0860-4f08-863a-abe3bc32562f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-f508e32e-92bc-45b1-bb5d-b4a548aac711 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

@media (min-width: 0px) {
[id="s-f508e32e-92bc-45b1-bb5d-b4a548aac711"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f508e32e-92bc-45b1-bb5d-b4a548aac711"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f508e32e-92bc-45b1-bb5d-b4a548aac711"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f508e32e-92bc-45b1-bb5d-b4a548aac711"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cfda3019-5b7e-4377-8781-9b53e955b6e5 {
  text-align: center;
}







  #s-cfda3019-5b7e-4377-8781-9b53e955b6e5 img.shogun-image {
    

    
    
    
  }


#s-cfda3019-5b7e-4377-8781-9b53e955b6e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-14d43830-d383-43c0-9a48-fa6a6d74f602 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-99ed3bad-c958-42ea-979f-debaa48f083c {
  text-align: center;
}







  #s-99ed3bad-c958-42ea-979f-debaa48f083c img.shogun-image {
    

    
    
    
  }


#s-99ed3bad-c958-42ea-979f-debaa48f083c .shogun-image-content {
  
    align-items: center;
  
}

#s-b8b49241-b317-4655-9f55-ddc5c13c61d8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-feae6daa-0cab-444b-a6d2-3ee82db5b76c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-99bdff80-4329-4020-81e9-9f96fc1c0e2c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 700px;
}

@media (min-width: 0px) {
[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-99bdff80-4329-4020-81e9-9f96fc1c0e2c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 7.5px);
}

}

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

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

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
  margin-top: 5px;
margin-bottom: 5px;
max-width: 640px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image,
  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
    width: 100%;
    height: auto;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
    
    
  }


.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shg-align-container {
  text-align: center
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image,
  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
    width: 100%;
    height: auto;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
    
    
  }


.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shg-align-container {
  text-align: center
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){



  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image,
  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
    width: 100%;
    height: auto;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
    
    
  }


.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shg-align-container {
  text-align: center
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){



  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image,
  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
    width: 100%;
    height: auto;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
    
    
  }


.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shg-align-container {
  text-align: center
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){



  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image,
  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 {
    width: 100%;
    height: auto;
  }

  #s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
    
    
  }


.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shg-align-container {
  text-align: center
}

.s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab2d8c60-8f96-4383-944e-7c96a4d3fdb7.shogun-image {
  box-sizing: border-box;
}


}
#s-e9489667-645b-43e5-b9cb-d0d86f3e06e0 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 700px;
text-align: center;
}







  #s-e9489667-645b-43e5-b9cb-d0d86f3e06e0 img.shogun-image {
    

    
    
    
  }


#s-e9489667-645b-43e5-b9cb-d0d86f3e06e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-578c3ed3-9620-4a9b-9f5e-bcebbbfe6c39 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-578c3ed3-9620-4a9b-9f5e-bcebbbfe6c39 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 55px;
  
  
  
}



#s-b8dd31f7-4061-4546-934e-4517947395ff {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
max-width: 700px;
background-color: rgba(208, 21, 21, 1);
}

#s-f6484fc4-e95c-429e-bc14-92f354ad73f7 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-7a2ff1a9-e551-44c6-90dd-ea1e7fbe012b {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

@media (min-width: 0px) {
[id="s-7a2ff1a9-e551-44c6-90dd-ea1e7fbe012b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7a2ff1a9-e551-44c6-90dd-ea1e7fbe012b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a2ff1a9-e551-44c6-90dd-ea1e7fbe012b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a2ff1a9-e551-44c6-90dd-ea1e7fbe012b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-409424fe-bbed-450e-89ec-fac4e79d46f7 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-409424fe-bbed-450e-89ec-fac4e79d46f7 img.shogun-image {
    

    
    
    
  }


#s-409424fe-bbed-450e-89ec-fac4e79d46f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-5f46980d-ee1b-4b6b-b9e2-0dc5de6a087d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f46980d-ee1b-4b6b-b9e2-0dc5de6a087d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9825eab8-6e4f-4feb-8c8f-5c2be2fecea4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-15d7dbe3-e559-48b8-97a5-bc440d415929 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-15d7dbe3-e559-48b8-97a5-bc440d415929 img.shogun-image {
    

    
    
    
  }


#s-15d7dbe3-e559-48b8-97a5-bc440d415929 .shogun-image-content {
  
    align-items: center;
  
}

#s-549d89cc-edcd-4272-b54b-c365d468ace2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-549d89cc-edcd-4272-b54b-c365d468ace2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-25401b1b-629d-48f5-b4ba-2079f2374098 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-b1b97b08-499c-44b8-8a9b-c9a01e3e0c05 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
background-color: rgba(224, 126, 123, 1);
}








#s-b1b97b08-499c-44b8-8a9b-c9a01e3e0c05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1b97b08-499c-44b8-8a9b-c9a01e3e0c05.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6bc22a0-8e28-4593-a436-b537551c4b41 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 225px;
max-width: 700px;
background-position: left center;
}








#s-b6bc22a0-8e28-4593-a436-b537551c4b41 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6bc22a0-8e28-4593-a436-b537551c4b41.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d2e3ec3-6130-4f74-9d6c-59ad324ac1a5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 200px;
padding-bottom: 10px;
padding-right: 24px;
max-width: 700px;
}

#s-35768edf-69a1-4b83-a5a7-a7cda37dadd7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-35768edf-69a1-4b83-a5a7-a7cda37dadd7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-00d94753-ac49-40e5-a148-98ac48a6ad2a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
max-width: 700px;
background-color: rgba(208, 21, 21, 1);
}

#s-ad3cc49d-3ffd-4841-b963-53359a81ce5e {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-bd4b955d-204d-4a03-9951-f7697c56642c {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-bd4b955d-204d-4a03-9951-f7697c56642c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bd4b955d-204d-4a03-9951-f7697c56642c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bd4b955d-204d-4a03-9951-f7697c56642c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd4b955d-204d-4a03-9951-f7697c56642c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-ecc18811-d102-47aa-b87f-4ce42da3845f {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-ecc18811-d102-47aa-b87f-4ce42da3845f img.shogun-image {
    

    
    
    
  }


#s-ecc18811-d102-47aa-b87f-4ce42da3845f .shogun-image-content {
  
    align-items: center;
  
}

#s-d8918803-faf4-41ae-b1ae-f71b4eefe3ce {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 600px;
}

#s-1b0e14f5-bba4-4da9-9044-2d67be435a1a {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-1b0e14f5-bba4-4da9-9044-2d67be435a1a img.shogun-image {
    

    
    
    
  }


#s-1b0e14f5-bba4-4da9-9044-2d67be435a1a .shogun-image-content {
  
    align-items: center;
  
}

#s-0989b82a-fd93-438a-8636-6f29574bb40e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 600px;
}

#s-2d3debdf-4474-4b6b-ad0b-eeb5e38cd49d {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-2d3debdf-4474-4b6b-ad0b-eeb5e38cd49d img.shogun-image {
    

    
    
    
  }


#s-2d3debdf-4474-4b6b-ad0b-eeb5e38cd49d .shogun-image-content {
  
    align-items: center;
  
}

#s-41417c42-4573-4601-bf9a-6855a87d27f5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 600px;
}

#s-48a6539c-69eb-4136-b151-172d4cca905c {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-48a6539c-69eb-4136-b151-172d4cca905c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-48a6539c-69eb-4136-b151-172d4cca905c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-48a6539c-69eb-4136-b151-172d4cca905c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-48a6539c-69eb-4136-b151-172d4cca905c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-a885c10f-45bc-4545-8b3f-d9c27a8c1b8a {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-a885c10f-45bc-4545-8b3f-d9c27a8c1b8a img.shogun-image {
    

    
    
    
  }


#s-a885c10f-45bc-4545-8b3f-d9c27a8c1b8a .shogun-image-content {
  
    align-items: center;
  
}

#s-96201c34-4b87-440c-96fb-143f6bf2a984 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-f726281f-af2a-407c-a600-42e260a6e45e {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-f726281f-af2a-407c-a600-42e260a6e45e img.shogun-image {
    

    
    
    
  }


#s-f726281f-af2a-407c-a600-42e260a6e45e .shogun-image-content {
  
    align-items: center;
  
}

#s-9fb9c5c9-0f6d-4426-b7fc-edffef3f6872 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-52b7889e-a524-4576-84a3-f416833b86e4 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-52b7889e-a524-4576-84a3-f416833b86e4 img.shogun-image,
  #s-52b7889e-a524-4576-84a3-f416833b86e4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-52b7889e-a524-4576-84a3-f416833b86e4 {
    width: 100%;
    height: auto;
  }



  #s-52b7889e-a524-4576-84a3-f416833b86e4 img.shogun-image {
    

    
    
    
  }


#s-52b7889e-a524-4576-84a3-f416833b86e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-69c0827f-c508-4900-94d0-ff3b09a994a9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-068985ce-98f9-4568-b255-7d7e92f57c9d {
  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-7cf9fa5f-8201-412f-8689-b44dcef4e184 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7cf9fa5f-8201-412f-8689-b44dcef4e184 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-d18a7639-e1b8-43cb-ac1f-324daf08b1ec {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
max-width: 700px;
background-color: rgba(208, 21, 21, 1);
}

#s-8c3b942d-2a1d-44cc-ba09-ca5907fe812a {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-7b32e5b9-7355-4b74-8c51-854edefe1743 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-00490672-9ef5-4999-ac2d-62e2caff86ba {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}







  #s-00490672-9ef5-4999-ac2d-62e2caff86ba img.shogun-image {
    

    
    
    
  }


#s-00490672-9ef5-4999-ac2d-62e2caff86ba .shogun-image-content {
  
    align-items: center;
  
}

#s-b7fbe1bd-7562-4989-8802-0be4608c2783 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-cc5a367b-7d49-4995-9349-0c14784e68af {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}







  #s-cc5a367b-7d49-4995-9349-0c14784e68af img.shogun-image {
    

    
    
    
  }


#s-cc5a367b-7d49-4995-9349-0c14784e68af .shogun-image-content {
  
    align-items: center;
  
}

#s-a62d6da4-27f6-4d2e-b1bf-99bfea121327 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-1057d184-fc04-408f-bd80-ac3df48db10a {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}







  #s-1057d184-fc04-408f-bd80-ac3df48db10a img.shogun-image {
    

    
    
    
  }


#s-1057d184-fc04-408f-bd80-ac3df48db10a .shogun-image-content {
  
    align-items: center;
  
}

#s-b991a73a-e4cb-4782-9187-5db7e5195064 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b991a73a-e4cb-4782-9187-5db7e5195064 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-1efe053f-3ce0-4f2c-b237-1296ee3b932e {
  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-133b1759-8979-4a6c-9eb5-31f80953c960 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-133b1759-8979-4a6c-9eb5-31f80953c960 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-b8ce9857-5f7b-4088-a427-f75231154128 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(208, 21, 21, 1);
border-style: solid;
max-width: 700px;
background-color: rgba(208, 21, 21, 1);
}

#s-438d76f3-9e10-4b9f-a283-85f8e0f0c430 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-ebf61ff4-1c51-42e3-a162-07420b5e62ce {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

@media (min-width: 0px) {
[id="s-ebf61ff4-1c51-42e3-a162-07420b5e62ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebf61ff4-1c51-42e3-a162-07420b5e62ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 1.5px);
}

}

@media (min-width: 992px) {
[id="s-ebf61ff4-1c51-42e3-a162-07420b5e62ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 1.5px);
}

}

@media (min-width: 1200px) {
[id="s-ebf61ff4-1c51-42e3-a162-07420b5e62ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 1.5px);
}

}

#s-eaabeec3-4caa-415c-9474-e69c130689c2 {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-6c88bbc8-6fef-4a08-a261-7940a5a84e14 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
}

#s-0f0899c8-4e90-4282-917d-0a99a06a7ab6 {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
max-width: 600px;
}

#s-b6b3457f-71db-49ed-9ba7-02c68d0977aa {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 700px;
aspect-ratio: 4175/2700;
text-align: center;
}





  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image,
  #s-482881af-477b-4f9b-964c-4054fa5420c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 {
    width: 100%;
    height: auto;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
    
    
  }


.s-482881af-477b-4f9b-964c-4054fa5420c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shg-align-container {
  text-align: center
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image,
  #s-482881af-477b-4f9b-964c-4054fa5420c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 {
    width: 100%;
    height: auto;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
    
    
  }


.s-482881af-477b-4f9b-964c-4054fa5420c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shg-align-container {
  text-align: center
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){



  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image,
  #s-482881af-477b-4f9b-964c-4054fa5420c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 {
    width: 100%;
    height: auto;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
    
    
  }


.s-482881af-477b-4f9b-964c-4054fa5420c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shg-align-container {
  text-align: center
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){



  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image,
  #s-482881af-477b-4f9b-964c-4054fa5420c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 {
    width: 100%;
    height: auto;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
    
    
  }


.s-482881af-477b-4f9b-964c-4054fa5420c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shg-align-container {
  text-align: center
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){



  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image,
  #s-482881af-477b-4f9b-964c-4054fa5420c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 {
    width: 100%;
    height: auto;
  }

  #s-482881af-477b-4f9b-964c-4054fa5420c1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
    
    
  }


.s-482881af-477b-4f9b-964c-4054fa5420c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shg-align-container {
  text-align: center
}

.s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-482881af-477b-4f9b-964c-4054fa5420c1.shogun-image {
  box-sizing: border-box;
}


}
#s-d3e6d708-8523-424d-a418-9c0ad9371270 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d3e6d708-8523-424d-a418-9c0ad9371270 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-03c26b02-79d9-4690-9ff5-cf6835e58983 {
  min-height: 50px;
}








#s-03c26b02-79d9-4690-9ff5-cf6835e58983 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03c26b02-79d9-4690-9ff5-cf6835e58983.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62c3218f-88b8-4bdc-a134-3de7e1e2258f {
  margin-left: auto;
margin-right: auto;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(0, 0, 238, 1);
border-style: solid;
max-width: 700px;
text-align: center;
}







  #s-62c3218f-88b8-4bdc-a134-3de7e1e2258f img.shogun-image {
    

    
    
    
  }


#s-62c3218f-88b8-4bdc-a134-3de7e1e2258f .shogun-image-content {
  
    align-items: center;
  
}

#s-d78f4a83-66cb-46c0-bf29-6b17cf1887b3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 700px;
}

#s-ec50e9fb-a750-4865-9a6e-ab30427685b2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec50e9fb-a750-4865-9a6e-ab30427685b2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-cf1f370a-5d65-46a6-895f-60b2c1234177 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf1f370a-5d65-46a6-895f-60b2c1234177 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans";
  font-style:  normal ;
  font-size: 38px;
  
  
  
}



#s-2c8642d3-e1a6-4034-961b-6019fa1aa0d9 {
  min-height: 50px;
}








#s-2c8642d3-e1a6-4034-961b-6019fa1aa0d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c8642d3-e1a6-4034-961b-6019fa1aa0d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a33678e6-a8c2-475c-89b9-a6900ecc9fee {
  margin-left: auto;
margin-right: auto;
border-color: #000;
border-style: solid;
max-width: 900px;
aspect-ratio: 16/9;
text-align: center;
}
@media (max-width: 767px){#s-a33678e6-a8c2-475c-89b9-a6900ecc9fee {
  
}
}




  #s-a33678e6-a8c2-475c-89b9-a6900ecc9fee img.shogun-image,
  #s-a33678e6-a8c2-475c-89b9-a6900ecc9fee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a33678e6-a8c2-475c-89b9-a6900ecc9fee {
    width: 100%;
    height: auto;
  }



  #s-a33678e6-a8c2-475c-89b9-a6900ecc9fee img.shogun-image {
    

    
    
    
  }


#s-a33678e6-a8c2-475c-89b9-a6900ecc9fee .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-6832e07a-8123-49cd-bb60-ca0406817be7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-6832e07a-8123-49cd-bb60-ca0406817be7 {
  display: none;
}
#s-6832e07a-8123-49cd-bb60-ca0406817be7, #wrap-s-6832e07a-8123-49cd-bb60-ca0406817be7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6832e07a-8123-49cd-bb60-ca0406817be7 {
  display: none;
}
#s-6832e07a-8123-49cd-bb60-ca0406817be7, #wrap-s-6832e07a-8123-49cd-bb60-ca0406817be7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6832e07a-8123-49cd-bb60-ca0406817be7 {
  display: none;
}
#s-6832e07a-8123-49cd-bb60-ca0406817be7, #wrap-s-6832e07a-8123-49cd-bb60-ca0406817be7 { display:none !important; }}@media (max-width: 767px){#s-6832e07a-8123-49cd-bb60-ca0406817be7 {
  display: none;
}
#s-6832e07a-8123-49cd-bb60-ca0406817be7, #wrap-s-6832e07a-8123-49cd-bb60-ca0406817be7 { display:none !important; }}
#s-6832e07a-8123-49cd-bb60-ca0406817be7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}



#s-c8123164-57ae-44ce-b825-4fd1079749a2 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 700px;
}

#s-23d34f05-3b9e-47ec-9a9b-322307554d47 {
  margin-top: 0px;
text-align: center;
}

#s-23d34f05-3b9e-47ec-9a9b-322307554d47 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}



#s-0712e77c-94ac-438f-8746-c281d43afc7b {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b {
  margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 72px;
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-e9a4e3f9-177b-4a02-ae67-d2834af1621b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e9a4e3f9-177b-4a02-ae67-d2834af1621b-root {
    text-align: center;
  }


#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e9a4e3f9-177b-4a02-ae67-d2834af1621b-root {
    text-align: center;
  }


#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e9a4e3f9-177b-4a02-ae67-d2834af1621b-root {
    text-align: center;
  }


#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e9a4e3f9-177b-4a02-ae67-d2834af1621b-root {
    text-align: center;
  }


#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e9a4e3f9-177b-4a02-ae67-d2834af1621b-root {
    text-align: center;
  }


#s-e9a4e3f9-177b-4a02-ae67-d2834af1621b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-d3035028-14d0-4451-a539-9de678671f25 {
  margin-top: 3px;
margin-left: auto;
margin-bottom: 3px;
margin-right: auto;
max-width: 700px;
}

#s-82a60188-9816-42c6-af16-782d2591c931 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-357b32a3-d2ea-4dc1-b801-04b10fad5838 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-357b32a3-d2ea-4dc1-b801-04b10fad5838 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 5px;
  
  
  
}



#s-ea9747cc-e632-4db6-a993-4d65d66f2658 {
  min-height: 50px;
background-color: rgba(205, 205, 205, 1);
}








#s-ea9747cc-e632-4db6-a993-4d65d66f2658 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea9747cc-e632-4db6-a993-4d65d66f2658.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-48eac5d3-f502-4fb7-a6d1-b3220736165a {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
aspect-ratio: 4000/2666;
text-align: center;
background-color: rgba(205, 205, 205, 1);
}





  #s-48eac5d3-f502-4fb7-a6d1-b3220736165a img.shogun-image,
  #s-48eac5d3-f502-4fb7-a6d1-b3220736165a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-48eac5d3-f502-4fb7-a6d1-b3220736165a {
    width: 100%;
    height: auto;
  }



  #s-48eac5d3-f502-4fb7-a6d1-b3220736165a img.shogun-image {
    

    
    
    
  }


#s-48eac5d3-f502-4fb7-a6d1-b3220736165a .shogun-image-content {
  
    align-items: center;
  
}

#s-b06c0584-26ac-4186-bf3e-d2eeaebee033 {
  margin-top: 0px;
text-align: center;
background-color: rgba(205, 205, 205, 1);
}

#s-b06c0584-26ac-4186-bf3e-d2eeaebee033 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 37px;
  
  
  
}



#s-f6b51843-ba5a-446e-a46f-9cf796544e57 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(205, 205, 205, 1);
}

#s-61c30fee-421f-4722-b77e-86dcf972aad4 {
  margin-top: 6px;
margin-bottom: 6px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(205, 205, 205, 1);
border-style: solid;
border-radius: 72px;
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-61c30fee-421f-4722-b77e-86dcf972aad4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-61c30fee-421f-4722-b77e-86dcf972aad4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-61c30fee-421f-4722-b77e-86dcf972aad4-root {
    text-align: center;
  }


#s-61c30fee-421f-4722-b77e-86dcf972aad4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-61c30fee-421f-4722-b77e-86dcf972aad4-root {
    text-align: center;
  }


#s-61c30fee-421f-4722-b77e-86dcf972aad4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-61c30fee-421f-4722-b77e-86dcf972aad4-root {
    text-align: center;
  }


#s-61c30fee-421f-4722-b77e-86dcf972aad4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-61c30fee-421f-4722-b77e-86dcf972aad4-root {
    text-align: center;
  }


#s-61c30fee-421f-4722-b77e-86dcf972aad4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-61c30fee-421f-4722-b77e-86dcf972aad4-root {
    text-align: center;
  }


#s-61c30fee-421f-4722-b77e-86dcf972aad4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-10100ea4-03d2-48ad-b269-10a32f14d11b {
  margin-top: 3px;
margin-left: auto;
margin-bottom: 3px;
margin-right: auto;
max-width: 700px;
}

#s-e55faf87-312f-45ee-9940-c0b30558c623 {
  margin-top: 5px;
margin-bottom: 5px;
}

#s-f0a4d86a-8220-4190-82f4-84f75b5d71df {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f0a4d86a-8220-4190-82f4-84f75b5d71df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 5px;
  
  
  
}



#s-770a477e-d314-453b-b3d3-ceb3f7bdaec6 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-770a477e-d314-453b-b3d3-ceb3f7bdaec6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-770a477e-d314-453b-b3d3-ceb3f7bdaec6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e318a163-cb34-4a5b-a1a5-318ffaa0a5bd {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-e318a163-cb34-4a5b-a1a5-318ffaa0a5bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e318a163-cb34-4a5b-a1a5-318ffaa0a5bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-212b4287-daa1-44b2-9db1-5c5a509da252 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(0, 0, 0, 1);
}

#s-212b4287-daa1-44b2-9db1-5c5a509da252 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-8e91f18a-10fd-47b6-a711-71cc6ec4c9cc {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
max-width: 700px;
background-color: rgba(0, 0, 0, 1);
}

#s-56fc636b-066e-45d1-971f-21210684086d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 3px;
padding-bottom: 3px;
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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}