.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;
text-align: center;
}







  #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 {
  min-height: 50px;
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: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
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-3e116499-8916-4a29-9744-e55ec77288b8 {
  margin-top: -15px;
text-align: center;
}

#s-3e116499-8916-4a29-9744-e55ec77288b8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#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-667ee691-4444-4761-b1ee-fc4a3d2cfeb4 {
  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-667ee691-4444-4761-b1ee-fc4a3d2cfeb4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4-root {
    text-align: center;
  }


#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4-root {
    text-align: center;
  }


#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4-root {
    text-align: center;
  }


#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4-root {
    text-align: center;
  }


#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4-root {
    text-align: center;
  }


#s-667ee691-4444-4761-b1ee-fc4a3d2cfeb4.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-9c6dedc3-2284-4a25-9f88-e47da341b1b9 {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 7px;
margin-right: auto;
max-width: 700px;
}

#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 {
  min-height: 500px;
background-color: rgba(241, 239, 228, 1);
}








#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-44fdc04d-6725-44b8-aca0-77df0e0b69c2 {
  min-height: 50px;
background-color: rgba(230, 0, 18, 1);
}








#s-44fdc04d-6725-44b8-aca0-77df0e0b69c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44fdc04d-6725-44b8-aca0-77df0e0b69c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23315e80-0241-4f16-8e06-f94203616ed7 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-10ef601c-e386-4233-bd19-c986455848d5 {
  text-align: center;
}

#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: #000;
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



.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-96831b78-00f9-4199-b985-33c52f0bc555 {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
}

@media (min-width: 0px) {
[id="s-96831b78-00f9-4199-b985-33c52f0bc555"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96831b78-00f9-4199-b985-33c52f0bc555"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96831b78-00f9-4199-b985-33c52f0bc555"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96831b78-00f9-4199-b985-33c52f0bc555"] > .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-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-73c202d8-3e30-4370-88cc-b554af0dcadf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73c202d8-3e30-4370-88cc-b554af0dcadf .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#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-d5880e4b-517f-4258-bdd3-6f0a02eda119 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(158, 42, 47, 1);
border-style: solid;
max-width: 900px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-d5880e4b-517f-4258-bdd3-6f0a02eda119 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-bc0954d5-6b1b-47c4-8ab1-452c25825546 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 900px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-bc0954d5-6b1b-47c4-8ab1-452c25825546 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#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: 30px;
  
  
  
}



.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-eeb7b95f-899d-4bf0-965f-5b6640e2569b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1920px;
}

#s-eeb7b95f-899d-4bf0-965f-5b6640e2569b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-eeb7b95f-899d-4bf0-965f-5b6640e2569b .shg-sld-nav-button.shg-sld-left,
#s-eeb7b95f-899d-4bf0-965f-5b6640e2569b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-32c0d582-a405-457b-ab95-216e0e335528"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32c0d582-a405-457b-ab95-216e0e335528"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-32c0d582-a405-457b-ab95-216e0e335528"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-32c0d582-a405-457b-ab95-216e0e335528"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-7548493c-b8a5-4c9b-b5c2-34f38490eb2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7548493c-b8a5-4c9b-b5c2-34f38490eb2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7548493c-b8a5-4c9b-b5c2-34f38490eb2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7548493c-b8a5-4c9b-b5c2-34f38490eb2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4ed51a30-cb9f-4157-bac5-2ba4c6a093c0 {
  margin-left: auto;
margin-right: auto;
}

#s-7875a0bf-0983-4708-8c5a-cd8c7fa7eba6 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8886d33a-1c95-4d2b-80a1-7ea946760ab7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8886d33a-1c95-4d2b-80a1-7ea946760ab7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8886d33a-1c95-4d2b-80a1-7ea946760ab7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8886d33a-1c95-4d2b-80a1-7ea946760ab7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9ab7c930-c330-46a5-beb6-bcc7acbfd18c {
  margin-left: auto;
margin-right: auto;
}

#s-5edd0ad0-6de4-4591-9c09-aa32e2f69d96 {
  margin-left: auto;
margin-right: auto;
}

#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: 30px;
  
  
  
}



#s-84dbc42f-b870-46d3-87e9-90f5735caff1 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
background-attachment: scroll;
}








#s-84dbc42f-b870-46d3-87e9-90f5735caff1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84dbc42f-b870-46d3-87e9-90f5735caff1.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: 900px;
text-align: center;
}







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

    
    
    
  }


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

#s-fd8f4946-6b24-4094-b6d8-19091a6c8ce4 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-fd8f4946-6b24-4094-b6d8-19091a6c8ce4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fd8f4946-6b24-4094-b6d8-19091a6c8ce4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6afc6075-478f-4c74-afca-b19a97011467 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6afc6075-478f-4c74-afca-b19a97011467 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-de1963e2-f54c-4fae-a2c1-c6c79116576c {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-de1963e2-f54c-4fae-a2c1-c6c79116576c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de1963e2-f54c-4fae-a2c1-c6c79116576c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34267881-046c-4686-a35a-f06ce2cb8f19 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-34267881-046c-4686-a35a-f06ce2cb8f19 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-e4433e61-052e-434a-b0e5-139631ff63c6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-e4433e61-052e-434a-b0e5-139631ff63c6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-4e7b24a8-e9cc-4843-9e9b-b5af0505f458 {
  margin-top: 3px;
margin-left: auto;
margin-bottom: 3px;
margin-right: auto;
max-width: 700px;
}








#s-4e7b24a8-e9cc-4843-9e9b-b5af0505f458 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e7b24a8-e9cc-4843-9e9b-b5af0505f458.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1853d80b-d095-47ba-8ec1-ea8788352d97 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
max-width: 900px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-1853d80b-d095-47ba-8ec1-ea8788352d97 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-cea56d68-0e6c-4743-bd1a-521c36e3eba4 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-cea56d68-0e6c-4743-bd1a-521c36e3eba4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cea56d68-0e6c-4743-bd1a-521c36e3eba4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c6b2528-9ecf-4e18-a834-12c476620aae {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-5b2960e0-3ac0-4e6d-a401-fb8eadee4ef2 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-5b2960e0-3ac0-4e6d-a401-fb8eadee4ef2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b2960e0-3ac0-4e6d-a401-fb8eadee4ef2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a363aae5-98d9-46c4-b6c6-af66717304d2 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-5a2ad524-a561-492f-9696-6f5a76976a85 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-5a2ad524-a561-492f-9696-6f5a76976a85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a2ad524-a561-492f-9696-6f5a76976a85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9690b7b3-8281-4484-a563-4e46acfae09b {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-01acab96-64e5-48a9-adc9-162bb1192b65 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-01acab96-64e5-48a9-adc9-162bb1192b65 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-27dea95d-bebc-4ed9-bc94-20185c8b0e39 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-27dea95d-bebc-4ed9-bc94-20185c8b0e39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27dea95d-bebc-4ed9-bc94-20185c8b0e39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90d17c13-277c-449f-a932-f6abf5755097 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-90d17c13-277c-449f-a932-f6abf5755097 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-c4c716cd-e9db-42c8-a1e6-2dd022b1876c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-c4c716cd-e9db-42c8-a1e6-2dd022b1876c .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



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







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

    
    
    
  }


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

#s-9524040a-157e-4e12-bbd4-a48a4cf09bed {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-9524040a-157e-4e12-bbd4-a48a4cf09bed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9524040a-157e-4e12-bbd4-a48a4cf09bed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d8e6030-c4a5-4bf8-9e0f-47cef354bfe6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d8e6030-c4a5-4bf8-9e0f-47cef354bfe6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ff7f52f4-2e85-4ba8-881d-ef41ac77d433 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-ff7f52f4-2e85-4ba8-881d-ef41ac77d433 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-bfd407d8-a9ce-4920-af96-2e0831e221a5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-bfd407d8-a9ce-4920-af96-2e0831e221a5 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-8073a7f9-7413-4b0d-9b04-0b32947fa5b2 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(99, 102, 106, 1);
}








#s-8073a7f9-7413-4b0d-9b04-0b32947fa5b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8073a7f9-7413-4b0d-9b04-0b32947fa5b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-006d8ac5-1faa-4d97-949b-152bccd6fa41 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-006d8ac5-1faa-4d97-949b-152bccd6fa41 .shogun-heading-component h1 {
  color: rgba(99, 102, 106, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  
  
  
}



#s-f34b37b5-769d-4ea5-9641-a0d4356d92e5 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(99, 102, 106, 1);
}

@media (min-width: 0px) {
[id="s-f34b37b5-769d-4ea5-9641-a0d4356d92e5"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-f34b37b5-769d-4ea5-9641-a0d4356d92e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-f34b37b5-769d-4ea5-9641-a0d4356d92e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-f34b37b5-769d-4ea5-9641-a0d4356d92e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-4f95761b-d2d6-4bc9-a7c5-7c9826f122ee {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-4f95761b-d2d6-4bc9-a7c5-7c9826f122ee img.shogun-image {
    

    
    
    
  }


#s-4f95761b-d2d6-4bc9-a7c5-7c9826f122ee .shogun-image-content {
  
    align-items: center;
  
}

#s-7edd8614-aae3-48b8-850f-fe747ef06e55 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
max-width: 200px;
}

#s-1c336162-d2f8-4591-b4e8-ad36f11aae09 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-1c336162-d2f8-4591-b4e8-ad36f11aae09 img.shogun-image {
    

    
    
    
  }


#s-1c336162-d2f8-4591-b4e8-ad36f11aae09 .shogun-image-content {
  
    align-items: center;
  
}

#s-b1e1a70e-19ca-4b48-ab69-fd39012130a9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
max-width: 200px;
}

#s-b434f3a4-1ec1-4525-8f8f-fa73eed540ac {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-b434f3a4-1ec1-4525-8f8f-fa73eed540ac img.shogun-image {
    

    
    
    
  }


#s-b434f3a4-1ec1-4525-8f8f-fa73eed540ac .shogun-image-content {
  
    align-items: center;
  
}

#s-ea03c533-1e6a-42c1-9b5e-396cbd4f46aa {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
max-width: 200px;
}

#s-2ca85a15-d46c-4aa0-a6c4-b3285afb1828 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
background-color: rgba(99, 102, 106, 1);
}

@media (min-width: 0px) {
[id="s-2ca85a15-d46c-4aa0-a6c4-b3285afb1828"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-2ca85a15-d46c-4aa0-a6c4-b3285afb1828"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-2ca85a15-d46c-4aa0-a6c4-b3285afb1828"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-2ca85a15-d46c-4aa0-a6c4-b3285afb1828"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-da1a6d68-76ba-4802-9804-1af437349a6c {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-da1a6d68-76ba-4802-9804-1af437349a6c img.shogun-image {
    

    
    
    
  }


#s-da1a6d68-76ba-4802-9804-1af437349a6c .shogun-image-content {
  
    align-items: center;
  
}

#s-41e9814f-bf32-434d-815a-f598fd0013b9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 200px;
}

#s-bed28d03-ede5-46b3-b3bf-4dead0478f5a {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-bed28d03-ede5-46b3-b3bf-4dead0478f5a img.shogun-image {
    

    
    
    
  }


#s-bed28d03-ede5-46b3-b3bf-4dead0478f5a .shogun-image-content {
  
    align-items: center;
  
}

#s-278dd8b0-a08a-4b79-88e8-cc8d3515b6e1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 200px;
}

#s-3b6bc687-34a4-4c8b-bb54-71ee3df60347 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-3b6bc687-34a4-4c8b-bb54-71ee3df60347 img.shogun-image {
    

    
    
    
  }


#s-3b6bc687-34a4-4c8b-bb54-71ee3df60347 .shogun-image-content {
  
    align-items: center;
  
}

#s-ee14d736-4893-41e0-bcdb-caa5809fb9c9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 200px;
}

#s-7641e9bf-5ad5-4f76-9102-4a4e979229e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7641e9bf-5ad5-4f76-9102-4a4e979229e0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-56c538a5-3294-4f86-822d-dc66367c766b {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-49564f6a-ff4e-4857-9126-043cf49ea1b0 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-49564f6a-ff4e-4857-9126-043cf49ea1b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49564f6a-ff4e-4857-9126-043cf49ea1b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-327f9bc1-5901-4702-9a30-9c58c394863c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-327f9bc1-5901-4702-9a30-9c58c394863c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-a6ca6b16-6dc9-457d-af1c-1c03982de1a8 {
  background-color: rgba(241, 239, 228, 1);
}








#s-a6ca6b16-6dc9-457d-af1c-1c03982de1a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6ca6b16-6dc9-457d-af1c-1c03982de1a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4bf57fe-d436-4315-a0ef-e065e2a4ac0c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-f4bf57fe-d436-4315-a0ef-e065e2a4ac0c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-41ed8ed5-d3c8-4c55-b4e4-fe5b1c736f28 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-41ed8ed5-d3c8-4c55-b4e4-fe5b1c736f28 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-585c5467-9c76-41f2-a713-cc0c2a242bcd {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
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 .shogun-image-content {
  
    align-items: center;
  
}

#s-63d2f8aa-07d9-4ecb-8fb1-df4db2a6ad03 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-63d2f8aa-07d9-4ecb-8fb1-df4db2a6ad03 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ae1f611d-4e8b-4396-8d01-85b47614da8b {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(158, 42, 47, 1);
}

#s-ae1f611d-4e8b-4396-8d01-85b47614da8b .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-71f98d77-048a-42e0-86dd-fb604f52cc68 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-71f98d77-048a-42e0-86dd-fb604f52cc68 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-a3a1d58c-367b-413c-a2b3-aedc43195537 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
text-align: center;
}







  #s-a3a1d58c-367b-413c-a2b3-aedc43195537 img.shogun-image {
    

    
    
    
  }


#s-a3a1d58c-367b-413c-a2b3-aedc43195537 .shogun-image-content {
  
    align-items: center;
  
}

#s-03d8f3ec-6da0-41a9-943e-c53d3b5f6106 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-03d8f3ec-6da0-41a9-943e-c53d3b5f6106 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-eb03f0df-25ef-4020-81a4-f7add6a3121a {
  text-align: left;
}

#s-4952d289-b15d-4ea4-af84-81cf42d4184f {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-4952d289-b15d-4ea4-af84-81cf42d4184f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4952d289-b15d-4ea4-af84-81cf42d4184f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-85eb102f-0d8f-44c9-9c0e-6c7cc3d37e0c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-left: 1%;
padding-bottom: 15px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(230, 0, 18, 1);
}

#s-85eb102f-0d8f-44c9-9c0e-6c7cc3d37e0c .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



#s-6e4710a6-1376-4ab7-8bd6-6a63966e4668 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 1%;
padding-bottom: 10px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-6e4710a6-1376-4ab7-8bd6-6a63966e4668 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-425b616d-3ff0-4c6e-a9d6-da78f388fddd {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 700px;
background-color: rgba(199, 193, 186, 1);
}

#s-4f860f22-d028-4465-8a91-9a5b97954e17 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 1%;
padding-bottom: 0px;
padding-right: 1%;
max-width: 700px;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-4f860f22-d028-4465-8a91-9a5b97954e17 .shogun-heading-component h5 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-b19b71d3-a8ca-4a8c-8c3f-e285bcc69ccf {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-2b595a2c-03c0-4a9b-860b-f734d1df6ad7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-2b595a2c-03c0-4a9b-860b-f734d1df6ad7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-8e1ef0dc-c55d-42f0-9be7-ec5fd28c4845 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1920px;
}

#s-8e1ef0dc-c55d-42f0-9be7-ec5fd28c4845 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8e1ef0dc-c55d-42f0-9be7-ec5fd28c4845 .shg-sld-nav-button.shg-sld-left,
#s-8e1ef0dc-c55d-42f0-9be7-ec5fd28c4845 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-1c879b48-eee8-4541-978c-38391a284d3d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c879b48-eee8-4541-978c-38391a284d3d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1c879b48-eee8-4541-978c-38391a284d3d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c879b48-eee8-4541-978c-38391a284d3d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-82cf1e02-611e-449a-8256-d3be9351c52e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-82cf1e02-611e-449a-8256-d3be9351c52e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-82cf1e02-611e-449a-8256-d3be9351c52e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-82cf1e02-611e-449a-8256-d3be9351c52e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-975b33aa-b9da-4801-8e9e-0ad1e6bf65bf {
  margin-left: auto;
margin-right: auto;
}

#s-a9c120e7-293a-4304-b0fb-61c1da902316 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-eb03887a-9673-4481-b5ca-41e864c3afab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eb03887a-9673-4481-b5ca-41e864c3afab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-eb03887a-9673-4481-b5ca-41e864c3afab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-eb03887a-9673-4481-b5ca-41e864c3afab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-648d14e9-756f-4db9-a762-3cbe3429882d {
  margin-left: auto;
margin-right: auto;
}

#s-7501fa52-5c84-44ae-a653-6f34fba1aba3 {
  margin-left: auto;
margin-right: auto;
}

#s-38bacb0e-f2ec-4fa9-8014-934d9bbd62e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-38bacb0e-f2ec-4fa9-8014-934d9bbd62e4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-df7fa86e-255c-480b-b3f0-ca5027d909a0 {
  min-height: 50px;
background-attachment: scroll;
}








#s-df7fa86e-255c-480b-b3f0-ca5027d909a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df7fa86e-255c-480b-b3f0-ca5027d909a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09fb1554-8c9b-401c-829e-dd9cc4f46b9d {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
text-align: center;
}







  #s-09fb1554-8c9b-401c-829e-dd9cc4f46b9d img.shogun-image {
    

    
    
    
  }


#s-09fb1554-8c9b-401c-829e-dd9cc4f46b9d .shogun-image-content {
  
    align-items: center;
  
}

#s-db97139e-0cda-40ba-881c-5f9aad6d8725 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-db97139e-0cda-40ba-881c-5f9aad6d8725 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db97139e-0cda-40ba-881c-5f9aad6d8725.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d8cb0a8-9f06-410b-9daf-5511ac9de874 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-3d8cb0a8-9f06-410b-9daf-5511ac9de874 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d8cb0a8-9f06-410b-9daf-5511ac9de874.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16e78035-2e64-4933-a2f8-7cf69b8c8ce4 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
max-width: 700px;
}

#s-fa3f098c-bab0-48ed-81a0-b3b7b4c499af {
  margin-top: -11px;
text-align: center;
}

#s-fa3f098c-bab0-48ed-81a0-b3b7b4c499af .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  900 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#s-689560c0-065f-4db7-af21-3cde03b09287 {
  min-height: 50px;
}








#s-689560c0-065f-4db7-af21-3cde03b09287 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-689560c0-065f-4db7-af21-3cde03b09287.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dee97e6a-829b-40b1-af0a-be2e052afcdb {
  min-height: 50px;
}








#s-dee97e6a-829b-40b1-af0a-be2e052afcdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dee97e6a-829b-40b1-af0a-be2e052afcdb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83ec53fe-2b5a-48c1-84a3-551f93336e25 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 500px;
}

#s-c8617788-2d33-4ee5-960e-2b7da67a5e62 {
  margin-top: 3px;
margin-bottom: 3px;
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-c8617788-2d33-4ee5-960e-2b7da67a5e62:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c8617788-2d33-4ee5-960e-2b7da67a5e62:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c8617788-2d33-4ee5-960e-2b7da67a5e62-root {
    text-align: center;
  }


#s-c8617788-2d33-4ee5-960e-2b7da67a5e62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c8617788-2d33-4ee5-960e-2b7da67a5e62-root {
    text-align: center;
  }


#s-c8617788-2d33-4ee5-960e-2b7da67a5e62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c8617788-2d33-4ee5-960e-2b7da67a5e62-root {
    text-align: center;
  }


#s-c8617788-2d33-4ee5-960e-2b7da67a5e62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c8617788-2d33-4ee5-960e-2b7da67a5e62-root {
    text-align: center;
  }


#s-c8617788-2d33-4ee5-960e-2b7da67a5e62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c8617788-2d33-4ee5-960e-2b7da67a5e62-root {
    text-align: center;
  }


#s-c8617788-2d33-4ee5-960e-2b7da67a5e62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-68d5da35-23f3-435f-ba51-116c26e072ac {
  margin-top: 7px;
margin-left: auto;
margin-bottom: 7px;
margin-right: auto;
max-width: 700px;
}

#s-f14ed689-ff42-4616-b71f-0d4b0d7ec9f6 {
  margin-top: -10px;
margin-left: auto;
margin-bottom: -10px;
margin-right: auto;
max-width: 500px;
}

#s-4402350e-6aca-4f12-bea2-1e3411087186 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-4402350e-6aca-4f12-bea2-1e3411087186 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4402350e-6aca-4f12-bea2-1e3411087186.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09ba08ac-9fb4-4e0e-8948-0fe7ae240212 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
max-width: 700px;
}

#s-b203c77e-f19d-4271-a2a3-df084a16a53e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-b203c77e-f19d-4271-a2a3-df084a16a53e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-d1da832e-7038-4596-8a09-6cf39f1afb94 {
  min-height: 50px;
background-color: rgba(241, 239, 228, 1);
}








#s-d1da832e-7038-4596-8a09-6cf39f1afb94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1da832e-7038-4596-8a09-6cf39f1afb94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98759ec3-26d4-44c3-8b87-ef98b14a015c {
  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;
text-align: left;
background-color: rgba(199, 193, 186, 1);
}

#s-98759ec3-26d4-44c3-8b87-ef98b14a015c .shogun-heading-component h1 {
  color: #000;
  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: 1%;
padding-right: 1%;
max-width: 700px;
background-color: rgba(199, 193, 186, 1);
}

#s-c6808211-1531-4a0e-ab62-0132d1512cd4 {
  margin-left: auto;
margin-right: auto;
max-width: 700px;
}

#s-a0e531d6-b5b7-4215-9835-9e2ccbe9263b {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(241, 239, 228, 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-0d5844fb-2373-434a-b67f-c8a84373a3bd {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-a9eb15ba-2c17-49aa-a83f-18106b6cfa48 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(241, 239, 228, 1);
}

#s-a9eb15ba-2c17-49aa-a83f-18106b6cfa48 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



/*
  $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}
