.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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  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-10556af7-b7b9-410c-83a9-f4049780e4fa {
  margin-left: 200px;
margin-right: 200px;
text-align: center;
}
@media (min-width: 1200px){#s-10556af7-b7b9-410c-83a9-f4049780e4fa {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-10556af7-b7b9-410c-83a9-f4049780e4fa {
  margin-left: 150px;
margin-right: 150px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-10556af7-b7b9-410c-83a9-f4049780e4fa {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-10556af7-b7b9-410c-83a9-f4049780e4fa {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-10556af7-b7b9-410c-83a9-f4049780e4fa {
  overflow: hidden;
  
  
}







  #s-10556af7-b7b9-410c-83a9-f4049780e4fa img.shogun-image {
    

    
    
    
  }


#s-10556af7-b7b9-410c-83a9-f4049780e4fa .shogun-image-content {
  
    justify-content: center;
  
}

.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-363fb799-c78c-48d7-8046-7b70674c1969 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-363fb799-c78c-48d7-8046-7b70674c1969 {
  padding-left: 200px;
padding-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-363fb799-c78c-48d7-8046-7b70674c1969 {
  padding-left: 200px;
padding-right: 200px;
}
}







#s-363fb799-c78c-48d7-8046-7b70674c1969 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-363fb799-c78c-48d7-8046-7b70674c1969.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  
  
  text-transform: none;
  
  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-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 {
  margin-top: 30px;
margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 {
  margin-top: 30px;
margin-bottom: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 {
  margin-top: 20px;
margin-bottom: 10px;
}
}
#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


@media (min-width: 1200px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-01a83a92-4eb0-45b2-ba9e-d7a8ada52c90 .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1em;
  
  
}


}
.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1 {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1 {
  margin-left: 350px;
margin-right: 350px;
}
}
@media (min-width: 0px) {
[id="s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-2f8ead7a-5b6b-47e6-9024-9d20bf30fae1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-88db9e02-4770-4778-af25-5c30a62e4ffb {
  text-align: center;
}
#s-88db9e02-4770-4778-af25-5c30a62e4ffb:hover {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;}
#s-88db9e02-4770-4778-af25-5c30a62e4ffb {
  overflow: hidden;
  
  
}







  #s-88db9e02-4770-4778-af25-5c30a62e4ffb img.shogun-image {
    

    
    
    
  }


#s-88db9e02-4770-4778-af25-5c30a62e4ffb .shogun-image-content {
  
    justify-content: center;
  
}

#s-a998d43b-ef78-4fc6-b893-95bdd70fe105 {
  text-align: center;
}

#s-a998d43b-ef78-4fc6-b893-95bdd70fe105 {
  overflow: hidden;
  
  
}







  #s-a998d43b-ef78-4fc6-b893-95bdd70fe105 img.shogun-image {
    

    
    
    
  }


#s-a998d43b-ef78-4fc6-b893-95bdd70fe105 .shogun-image-content {
  
    justify-content: center;
  
}

#s-223261ac-b8ac-44f2-bc9e-5af451426be2 {
  text-align: center;
}

#s-223261ac-b8ac-44f2-bc9e-5af451426be2 {
  overflow: hidden;
  
  
}







  #s-223261ac-b8ac-44f2-bc9e-5af451426be2 img.shogun-image {
    

    
    
    
  }


#s-223261ac-b8ac-44f2-bc9e-5af451426be2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fe9fad10-d6f5-4b3c-8f91-f43c02ebc0ef {
  text-align: center;
}

#s-fe9fad10-d6f5-4b3c-8f91-f43c02ebc0ef {
  overflow: hidden;
  
  
}







  #s-fe9fad10-d6f5-4b3c-8f91-f43c02ebc0ef img.shogun-image {
    

    
    
    
  }


#s-fe9fad10-d6f5-4b3c-8f91-f43c02ebc0ef .shogun-image-content {
  
    justify-content: center;
  
}

#s-d272c351-b48d-4212-bb6a-0518cd560cb8 {
  text-align: center;
}

#s-d272c351-b48d-4212-bb6a-0518cd560cb8 {
  overflow: hidden;
  
  
}







  #s-d272c351-b48d-4212-bb6a-0518cd560cb8 img.shogun-image {
    

    
    
    
  }


#s-d272c351-b48d-4212-bb6a-0518cd560cb8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-88522411-73ad-4d37-8c5c-6c104a06717e {
  text-align: center;
}

#s-88522411-73ad-4d37-8c5c-6c104a06717e {
  overflow: hidden;
  
  
}







  #s-88522411-73ad-4d37-8c5c-6c104a06717e img.shogun-image {
    

    
    
    
  }


#s-88522411-73ad-4d37-8c5c-6c104a06717e .shogun-image-content {
  
    justify-content: center;
  
}

#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 10px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 10px;
margin-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf {
  margin-top: 10px;
margin-left: 30px;
margin-right: 30px;
display: none;
}
#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf, #wrap-s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf, #wrap-content-s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf { display: none !important; }}
#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}@media (max-width: 767px){#s-5e7af3cf-4ae2-4bee-8cac-33d07e594ecf .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 10px;
margin-right: 200px;
display: none;
}
#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-content-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 10px;
margin-right: 200px;
display: none;
}
#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-content-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 10px;
margin-right: 30px;
display: none;
}
#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1, #wrap-content-s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 { display: none !important; }}@media (max-width: 767px){#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


@media (max-width: 767px){#s-dfa0d837-4c22-46cf-872a-7b6a4adb66b1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

.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-5b9bb1fc-fd96-4609-806e-9fc62de92300 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 45px;
background-color: #252525;
text-align: center;
text-decoration: none;
color: rgba(255, 237, 0, 1);
}
#s-5b9bb1fc-fd96-4609-806e-9fc62de92300:hover {background-color: rgba(37, 37, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5b9bb1fc-fd96-4609-806e-9fc62de92300:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5b9bb1fc-fd96-4609-806e-9fc62de92300 {
  margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5b9bb1fc-fd96-4609-806e-9fc62de92300 {
  margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5b9bb1fc-fd96-4609-806e-9fc62de92300 {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-5b9bb1fc-fd96-4609-806e-9fc62de92300 {
  margin-left: 30px;
margin-right: 30px;
display: none;
}
#s-5b9bb1fc-fd96-4609-806e-9fc62de92300, #wrap-s-5b9bb1fc-fd96-4609-806e-9fc62de92300, #wrap-content-s-5b9bb1fc-fd96-4609-806e-9fc62de92300 { display: none !important; }}

  #s-5b9bb1fc-fd96-4609-806e-9fc62de92300-root {
    text-align: center;
  }


#s-5b9bb1fc-fd96-4609-806e-9fc62de92300.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5b9bb1fc-fd96-4609-806e-9fc62de92300-root {
    text-align: center;
  }


#s-5b9bb1fc-fd96-4609-806e-9fc62de92300.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5b9bb1fc-fd96-4609-806e-9fc62de92300-root {
    text-align: center;
  }


#s-5b9bb1fc-fd96-4609-806e-9fc62de92300.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5b9bb1fc-fd96-4609-806e-9fc62de92300-root {
    text-align: center;
  }


#s-5b9bb1fc-fd96-4609-806e-9fc62de92300.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 25px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5b9bb1fc-fd96-4609-806e-9fc62de92300-root {
    text-align: center;
  }


#s-5b9bb1fc-fd96-4609-806e-9fc62de92300.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-1de16474-156a-4d5d-8cd7-bbb2ee942254 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 45px;
background-color: #252525;
text-align: center;
text-decoration: none;
color: rgba(255, 237, 0, 1);
line-height: 1.5em;
}
#s-1de16474-156a-4d5d-8cd7-bbb2ee942254:hover {background-color: rgba(37, 37, 37, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1de16474-156a-4d5d-8cd7-bbb2ee942254:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-1de16474-156a-4d5d-8cd7-bbb2ee942254 {
  margin-left: 200px;
margin-right: 200px;
display: none;
}
#s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-content-s-1de16474-156a-4d5d-8cd7-bbb2ee942254 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1de16474-156a-4d5d-8cd7-bbb2ee942254 {
  margin-left: 200px;
margin-right: 200px;
display: none;
}
#s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-content-s-1de16474-156a-4d5d-8cd7-bbb2ee942254 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1de16474-156a-4d5d-8cd7-bbb2ee942254 {
  margin-left: 30px;
margin-right: 30px;
display: none;
}
#s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-s-1de16474-156a-4d5d-8cd7-bbb2ee942254, #wrap-content-s-1de16474-156a-4d5d-8cd7-bbb2ee942254 { display: none !important; }}@media (max-width: 767px){#s-1de16474-156a-4d5d-8cd7-bbb2ee942254 {
  margin-left: 30px;
margin-right: 30px;
}
}

  #s-1de16474-156a-4d5d-8cd7-bbb2ee942254-root {
    text-align: center;
  }


#s-1de16474-156a-4d5d-8cd7-bbb2ee942254.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1de16474-156a-4d5d-8cd7-bbb2ee942254-root {
    text-align: center;
  }


#s-1de16474-156a-4d5d-8cd7-bbb2ee942254.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1de16474-156a-4d5d-8cd7-bbb2ee942254-root {
    text-align: center;
  }


#s-1de16474-156a-4d5d-8cd7-bbb2ee942254.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1de16474-156a-4d5d-8cd7-bbb2ee942254-root {
    text-align: center;
  }


#s-1de16474-156a-4d5d-8cd7-bbb2ee942254.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1de16474-156a-4d5d-8cd7-bbb2ee942254-root {
    text-align: center;
  }


#s-1de16474-156a-4d5d-8cd7-bbb2ee942254.shg-btn {
  color: rgba(255, 237, 0, 1);
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-a2586a4a-f82e-4f86-81dd-03864e414f75 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a2586a4a-f82e-4f86-81dd-03864e414f75 {
  margin-top: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a2586a4a-f82e-4f86-81dd-03864e414f75 {
  margin-top: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a2586a4a-f82e-4f86-81dd-03864e414f75 {
  margin-top: 50px;
}
}@media (max-width: 767px){#s-a2586a4a-f82e-4f86-81dd-03864e414f75 {
  margin-top: 50px;
}
}
#s-a2586a4a-f82e-4f86-81dd-03864e414f75 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (max-width: 767px){#s-a2586a4a-f82e-4f86-81dd-03864e414f75 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  text-align: center;
}
@media (min-width: 1200px){#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd {
  overflow: hidden;
  
  
}







  #s-89a9c234-1b33-4acc-b810-fff0fc78cdbd img.shogun-image {
    

    
    
    
  }


#s-89a9c234-1b33-4acc-b810-fff0fc78cdbd .shogun-image-content {
  
    justify-content: center;
  
}

#s-f6cc4046-f350-49af-9289-a989a42042b1 {
  margin-top: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
line-height: 1.7em;
letter-spacing: 3px;
background-gradient: [{"id"=>1, "pos"=>0.05, "color"=>"#cf0000"}, {"id"=>2, "pos"=>0.4, "color"=>"#f89487"}, {"id"=>4, "pos"=>0.7801652388139204, "color"=>"#f89487"}, {"id"=>3, "pos"=>1, "color"=>"#ff9c9c"}];
hover-type: gradient;
}
#s-f6cc4046-f350-49af-9289-a989a42042b1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f6cc4046-f350-49af-9289-a989a42042b1:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f6cc4046-f350-49af-9289-a989a42042b1 {
  margin-top: 80px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f6cc4046-f350-49af-9289-a989a42042b1 {
  margin-top: 80px;
}
}@media (max-width: 767px){#s-f6cc4046-f350-49af-9289-a989a42042b1 {
  letter-spacing: 1px;
}
}

  #s-f6cc4046-f350-49af-9289-a989a42042b1-root {
    text-align: center;
  }


#s-f6cc4046-f350-49af-9289-a989a42042b1.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f6cc4046-f350-49af-9289-a989a42042b1-root {
    text-align: center;
  }


#s-f6cc4046-f350-49af-9289-a989a42042b1.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f6cc4046-f350-49af-9289-a989a42042b1-root {
    text-align: center;
  }


#s-f6cc4046-f350-49af-9289-a989a42042b1.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f6cc4046-f350-49af-9289-a989a42042b1-root {
    text-align: center;
  }


#s-f6cc4046-f350-49af-9289-a989a42042b1.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f6cc4046-f350-49af-9289-a989a42042b1-root {
    text-align: center;
  }


#s-f6cc4046-f350-49af-9289-a989a42042b1.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-f200fa10-55e0-4654-a8f5-e950e394bffe {
  min-height: 50px;
}








#s-f200fa10-55e0-4654-a8f5-e950e394bffe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f200fa10-55e0-4654-a8f5-e950e394bffe.shg-box.shg-c {
  justify-content: center;
}

#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a {
  margin-left: 100px;
margin-right: 100px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a {
  margin-top: 100px;
margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a {
  margin-top: 100px;
margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a {
  margin-top: 80px;
margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a {
  margin-top: 80px;
margin-left: 0px;
margin-right: 0px;
}
}
#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


@media (max-width: 767px){#s-607b4f94-a202-4f0e-bb7e-e2ed9648534a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  
  
}


}
#s-8a2667a4-943c-4183-8f50-776e625e562e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8a2667a4-943c-4183-8f50-776e625e562e {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-8a2667a4-943c-4183-8f50-776e625e562e .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8a2667a4-943c-4183-8f50-776e625e562e .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-8a2667a4-943c-4183-8f50-776e625e562e .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


}
#s-8ed1317a-8536-4df9-8506-142a3bd5c741 {
  min-height: 30px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-8ed1317a-8536-4df9-8506-142a3bd5c741 {
  min-height: 50px;
}
}







#s-8ed1317a-8536-4df9-8506-142a3bd5c741 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8ed1317a-8536-4df9-8506-142a3bd5c741.shg-box.shg-c {
  justify-content: center;
}

#s-71be2a00-d560-4483-a617-d5a934a7b3da {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-71be2a00-d560-4483-a617-d5a934a7b3da {
  padding-top: 40px;
padding-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-71be2a00-d560-4483-a617-d5a934a7b3da {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-71be2a00-d560-4483-a617-d5a934a7b3da {
  padding-top: 20px;
}
}@media (max-width: 767px){#s-71be2a00-d560-4483-a617-d5a934a7b3da {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-71be2a00-d560-4483-a617-d5a934a7b3da .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-71be2a00-d560-4483-a617-d5a934a7b3da .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-71be2a00-d560-4483-a617-d5a934a7b3da .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


}
#s-0d23ef83-3e15-4195-8137-09a78d799b77 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 {
  padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 {
  padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
background-color: rgba(232, 232, 232, 1);
}
}@media (max-width: 767px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 {
  padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
}
}
#s-0d23ef83-3e15-4195-8137-09a78d799b77 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-0d23ef83-3e15-4195-8137-09a78d799b77 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  
}


}
#s-282c7e24-221a-49d3-8ada-f04c920777e8 {
  min-height: 50px;
}








#s-282c7e24-221a-49d3-8ada-f04c920777e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-282c7e24-221a-49d3-8ada-f04c920777e8.shg-box.shg-c {
  justify-content: center;
}

#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  text-align: center;
}
@media (min-width: 1200px){#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  margin-top: 30px;
margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  margin-top: 30px;
margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  margin-top: 20px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 {
  overflow: hidden;
  
  
}







  #s-8e491f8b-93a6-4325-81d6-3dbee53a0296 img.shogun-image {
    

    
    
    
  }


#s-8e491f8b-93a6-4325-81d6-3dbee53a0296 .shogun-image-content {
  
    justify-content: center;
  
}

#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d {
  margin-left: 350px;
margin-bottom: 30px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d {
  margin-left: 350px;
margin-bottom: 30px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d {
  margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d {
  margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (max-width: 767px){#s-381496a4-3bc7-41c1-b59a-d6b2d68a923d .shogun-heading-component h1 {
  color: rgba(255, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}
#s-10955438-23c5-498f-963d-b34655e09e2b {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}








#s-10955438-23c5-498f-963d-b34655e09e2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10955438-23c5-498f-963d-b34655e09e2b.shg-box.shg-c {
  justify-content: center;
}

#s-59839d67-69c7-48c0-8df3-68ca6582bfbe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe {
  padding-top: 40px;
padding-left: 200px;
padding-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe {
  padding-top: 40px;
padding-left: 200px;
padding-bottom: 10px;
padding-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe {
  padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-59839d67-69c7-48c0-8df3-68ca6582bfbe .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-59839d67-69c7-48c0-8df3-68ca6582bfbe .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


}
#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d {
  margin-left: 350px;
margin-bottom: 50px;
margin-right: 350px;
padding-top: 10px;
padding-bottom: 10px;
background-color: rgba(232, 232, 232, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d {
  margin-left: 350px;
margin-bottom: 50px;
margin-right: 350px;
padding-top: 10px;
padding-bottom: 10px;
background-color: rgba(232, 232, 232, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
background-color: rgba(232, 232, 232, 1);
}
}@media (max-width: 767px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
background-color: rgba(232, 232, 232, 1);
}
}
#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


@media (min-width: 1200px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-2ce77d71-6da0-4cf1-8c00-dbb0ea20720d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  text-align: center;
}
@media (min-width: 1200px){#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
}
#s-af4d9818-823e-4204-8b04-cf89bbb0b98b {
  overflow: hidden;
  
  
}







  #s-af4d9818-823e-4204-8b04-cf89bbb0b98b img.shogun-image {
    

    
    
    
  }


#s-af4d9818-823e-4204-8b04-cf89bbb0b98b .shogun-image-content {
  
    justify-content: center;
  
}

#s-724517e8-1a5e-4f0e-90af-705c51f5692c {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}








#s-724517e8-1a5e-4f0e-90af-705c51f5692c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-724517e8-1a5e-4f0e-90af-705c51f5692c.shg-box.shg-c {
  justify-content: center;
}

#s-566a1573-bf37-418b-9457-ba51a2b7ded6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 {
  padding-top: 40px;
padding-left: 200px;
padding-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 {
  padding-top: 40px;
padding-left: 200px;
padding-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 {
  padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-566a1573-bf37-418b-9457-ba51a2b7ded6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-566a1573-bf37-418b-9457-ba51a2b7ded6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-42ae6f15-3559-4b4a-a392-5e119a441f4c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c {
  padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c {
  padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
background-color: rgba(232, 232, 232, 1);
}
}@media (max-width: 767px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c {
  padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
}
}
#s-42ae6f15-3559-4b4a-a392-5e119a441f4c .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-42ae6f15-3559-4b4a-a392-5e119a441f4c .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  
}


}
#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  text-align: center;
}
@media (min-width: 1200px){#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  margin-top: 30px;
margin-left: 350px;
margin-bottom: 30px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
}
#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 {
  overflow: hidden;
  
  
}







  #s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 img.shogun-image {
    

    
    
    
  }


#s-c550a870-7fd2-4f57-8ee8-1e5a335192a1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-20d3f740-a6a1-413b-92b6-957aba5acfac {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}








#s-20d3f740-a6a1-413b-92b6-957aba5acfac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-20d3f740-a6a1-413b-92b6-957aba5acfac.shg-box.shg-c {
  justify-content: center;
}

#s-303efcea-e358-408b-835f-e99bb2d30c9d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-303efcea-e358-408b-835f-e99bb2d30c9d {
  padding-top: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-303efcea-e358-408b-835f-e99bb2d30c9d {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-303efcea-e358-408b-835f-e99bb2d30c9d {
  padding-top: 20px;
padding-bottom: 10px;
}
}@media (max-width: 767px){#s-303efcea-e358-408b-835f-e99bb2d30c9d {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-303efcea-e358-408b-835f-e99bb2d30c9d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-303efcea-e358-408b-835f-e99bb2d30c9d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}@media (max-width: 767px){#s-303efcea-e358-408b-835f-e99bb2d30c9d .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(232, 232, 232, 1);
}
@media (min-width: 1200px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc {
  padding-top: 10px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc {
  padding-top: 10px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
}@media (max-width: 767px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc {
  padding-top: 10px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
text-align: left;
background-color: rgba(232, 232, 232, 1);
}
}
#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  
}


@media (min-width: 1200px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-3f7f01a1-639f-411f-aa27-4bbd14a778bc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  text-align: center;
}
@media (min-width: 1200px){#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  margin-top: 20px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 {
  overflow: hidden;
  
  
}







  #s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 img.shogun-image {
    

    
    
    
  }


#s-bd0fa4bd-44e4-4085-9c0e-b999c546d0b7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  text-align: center;
}
@media (min-width: 1200px){#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  margin-top: 20px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-e94005e2-e107-47ee-b2ad-56d82be01869 {
  overflow: hidden;
  
  
}







  #s-e94005e2-e107-47ee-b2ad-56d82be01869 img.shogun-image {
    

    
    
    
  }


#s-e94005e2-e107-47ee-b2ad-56d82be01869 .shogun-image-content {
  
    justify-content: center;
  
}

#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b {
  margin-top: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
line-height: 1.7em;
letter-spacing: 3px;
background-gradient: [{"id"=>1, "pos"=>0.05, "color"=>"#cf0000"}, {"id"=>2, "pos"=>0.4, "color"=>"#f89487"}, {"id"=>4, "pos"=>0.7801652388139204, "color"=>"#f89487"}, {"id"=>3, "pos"=>1, "color"=>"#ff9c9c"}];
hover-type: gradient;
}
#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b {
  letter-spacing: 1px;
}
}

  #s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b-root {
    text-align: center;
  }


#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b-root {
    text-align: center;
  }


#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b-root {
    text-align: center;
  }


#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b-root {
    text-align: center;
  }


#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b-root {
    text-align: center;
  }


#s-7f497cde-cb1c-4fae-bb8f-0a72cf41fc3b.shg-btn {
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-33604242-d3c2-415b-9e14-18f2a55f0c8f {
  min-height: 50px;
}








#s-33604242-d3c2-415b-9e14-18f2a55f0c8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-33604242-d3c2-415b-9e14-18f2a55f0c8f.shg-box.shg-c {
  justify-content: center;
}

#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 {
  margin-left: 100px;
margin-right: 100px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 {
  margin-top: 80px;
margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 {
  margin-top: 80px;
margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 {
  margin-top: 80px;
margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 {
  margin-top: 80px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
}
}
#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


@media (max-width: 767px){#s-f0c912ca-14c7-4c18-8dd6-0efc9a1282b2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  
  
}


}
#s-b07c63c5-7c45-4b79-8830-ec0493b34d46 {
  min-height: 50px;
}








#s-b07c63c5-7c45-4b79-8830-ec0493b34d46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b07c63c5-7c45-4b79-8830-ec0493b34d46.shg-box.shg-c {
  justify-content: center;
}

#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  text-align: center;
}
@media (min-width: 1200px){#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-c1a7ad57-3473-4db0-a278-8af885c9aabb {
  overflow: hidden;
  
  
}







  #s-c1a7ad57-3473-4db0-a278-8af885c9aabb img.shogun-image {
    

    
    
    
  }


#s-c1a7ad57-3473-4db0-a278-8af885c9aabb .shogun-image-content {
  
    justify-content: center;
  
}

#s-a41e1cf7-802b-41b0-a5a4-b21535e054c4 {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-a41e1cf7-802b-41b0-a5a4-b21535e054c4 {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-a41e1cf7-802b-41b0-a5a4-b21535e054c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a41e1cf7-802b-41b0-a5a4-b21535e054c4.shg-box.shg-c {
  justify-content: center;
}

#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-f2f2ceb7-83ef-47cc-a81e-d8728901a2b7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-268bed39-2fe9-4859-ba46-16b21fe69ec4 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-268bed39-2fe9-4859-ba46-16b21fe69ec4 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-268bed39-2fe9-4859-ba46-16b21fe69ec4 {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-268bed39-2fe9-4859-ba46-16b21fe69ec4 {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-268bed39-2fe9-4859-ba46-16b21fe69ec4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-268bed39-2fe9-4859-ba46-16b21fe69ec4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-268bed39-2fe9-4859-ba46-16b21fe69ec4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-268bed39-2fe9-4859-ba46-16b21fe69ec4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-f87b1d0b-93f9-4a90-961e-6571572194ff {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f87b1d0b-93f9-4a90-961e-6571572194ff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f87b1d0b-93f9-4a90-961e-6571572194ff:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f87b1d0b-93f9-4a90-961e-6571572194ff {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f87b1d0b-93f9-4a90-961e-6571572194ff {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f87b1d0b-93f9-4a90-961e-6571572194ff {
  line-height: 2em;
}
}@media (max-width: 767px){#s-f87b1d0b-93f9-4a90-961e-6571572194ff {
  margin-bottom: 10px;
}
}

  #s-f87b1d0b-93f9-4a90-961e-6571572194ff-root {
    text-align: center;
  }


#s-f87b1d0b-93f9-4a90-961e-6571572194ff.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f87b1d0b-93f9-4a90-961e-6571572194ff-root {
    text-align: center;
  }


#s-f87b1d0b-93f9-4a90-961e-6571572194ff.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f87b1d0b-93f9-4a90-961e-6571572194ff-root {
    text-align: center;
  }


#s-f87b1d0b-93f9-4a90-961e-6571572194ff.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f87b1d0b-93f9-4a90-961e-6571572194ff-root {
    text-align: center;
  }


#s-f87b1d0b-93f9-4a90-961e-6571572194ff.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f87b1d0b-93f9-4a90-961e-6571572194ff-root {
    text-align: center;
  }


#s-f87b1d0b-93f9-4a90-961e-6571572194ff.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4 {
  line-height: 2em;
}
}

  #s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4-root {
    text-align: center;
  }


#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4-root {
    text-align: center;
  }


#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4-root {
    text-align: center;
  }


#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4-root {
    text-align: center;
  }


#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4-root {
    text-align: center;
  }


#s-18c6d26a-f41e-4ccd-b662-e2dbc8521bd4.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-60c4dc0d-b9e9-4804-b7be-c0103f9a6444 {
  min-height: 50px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-60c4dc0d-b9e9-4804-b7be-c0103f9a6444 {
  min-height: 0px;
}
}







#s-60c4dc0d-b9e9-4804-b7be-c0103f9a6444 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-60c4dc0d-b9e9-4804-b7be-c0103f9a6444.shg-box.shg-c {
  justify-content: center;
}

#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  text-align: center;
}
@media (min-width: 1200px){#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 {
  overflow: hidden;
  
  
}







  #s-1a70a92d-4693-464e-bf88-07f2db17e0f1 img.shogun-image {
    

    
    
    
  }


#s-1a70a92d-4693-464e-bf88-07f2db17e0f1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ec4c058e-4bee-43a8-8e18-dbd540567b94 {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-ec4c058e-4bee-43a8-8e18-dbd540567b94 {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-ec4c058e-4bee-43a8-8e18-dbd540567b94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec4c058e-4bee-43a8-8e18-dbd540567b94.shg-box.shg-c {
  justify-content: center;
}

#s-155660e0-1806-465d-ae04-542f122936d7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-155660e0-1806-465d-ae04-542f122936d7 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-155660e0-1806-465d-ae04-542f122936d7 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-155660e0-1806-465d-ae04-542f122936d7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-155660e0-1806-465d-ae04-542f122936d7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-155660e0-1806-465d-ae04-542f122936d7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-155660e0-1806-465d-ae04-542f122936d7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  text-align: center;
}
@media (min-width: 1200px){#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 {
  overflow: hidden;
  
  
}







  #s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 img.shogun-image {
    

    
    
    
  }


#s-f1c02098-1bcf-4e6f-9cf4-aac9a1374b19 .shogun-image-content {
  
    justify-content: center;
  
}

#s-55334651-4d5e-4f07-8ac0-146cca0e1b2f {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-55334651-4d5e-4f07-8ac0-146cca0e1b2f {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-55334651-4d5e-4f07-8ac0-146cca0e1b2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-55334651-4d5e-4f07-8ac0-146cca0e1b2f.shg-box.shg-c {
  justify-content: center;
}

#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 {
  margin-top: 50px;
margin-left: 350px;
margin-bottom: 50px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-4e50ee0c-dddd-4cb5-a885-8dda06d6de80 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6 {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6 {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6 {
  margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-144c82c1-fdd9-45a4-a8c8-3f1195a1ebb6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-06974c01-10da-4e91-8eea-cecb91073c28 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-06974c01-10da-4e91-8eea-cecb91073c28:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-06974c01-10da-4e91-8eea-cecb91073c28:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-06974c01-10da-4e91-8eea-cecb91073c28 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-06974c01-10da-4e91-8eea-cecb91073c28 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-06974c01-10da-4e91-8eea-cecb91073c28 {
  line-height: 2em;
}
}

  #s-06974c01-10da-4e91-8eea-cecb91073c28-root {
    text-align: center;
  }


#s-06974c01-10da-4e91-8eea-cecb91073c28.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-06974c01-10da-4e91-8eea-cecb91073c28-root {
    text-align: center;
  }


#s-06974c01-10da-4e91-8eea-cecb91073c28.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-06974c01-10da-4e91-8eea-cecb91073c28-root {
    text-align: center;
  }


#s-06974c01-10da-4e91-8eea-cecb91073c28.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-06974c01-10da-4e91-8eea-cecb91073c28-root {
    text-align: center;
  }


#s-06974c01-10da-4e91-8eea-cecb91073c28.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-06974c01-10da-4e91-8eea-cecb91073c28-root {
    text-align: center;
  }


#s-06974c01-10da-4e91-8eea-cecb91073c28.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc {
  line-height: 2em;
}
}@media (max-width: 767px){#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc {
  margin-top: 10px;
margin-bottom: 10px;
}
}

  #s-389a3908-dcb4-44b6-892b-fe044cf1b6cc-root {
    text-align: center;
  }


#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-389a3908-dcb4-44b6-892b-fe044cf1b6cc-root {
    text-align: center;
  }


#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-389a3908-dcb4-44b6-892b-fe044cf1b6cc-root {
    text-align: center;
  }


#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-389a3908-dcb4-44b6-892b-fe044cf1b6cc-root {
    text-align: center;
  }


#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-389a3908-dcb4-44b6-892b-fe044cf1b6cc-root {
    text-align: center;
  }


#s-389a3908-dcb4-44b6-892b-fe044cf1b6cc.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-d857cb81-d556-4e13-bd70-bd24fbb43c6e {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d857cb81-d556-4e13-bd70-bd24fbb43c6e {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d857cb81-d556-4e13-bd70-bd24fbb43c6e {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-d857cb81-d556-4e13-bd70-bd24fbb43c6e {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-d857cb81-d556-4e13-bd70-bd24fbb43c6e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d857cb81-d556-4e13-bd70-bd24fbb43c6e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-d857cb81-d556-4e13-bd70-bd24fbb43c6e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-d857cb81-d556-4e13-bd70-bd24fbb43c6e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-ac2b3720-0690-492f-962f-f28db8eb1bc0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-ac2b3720-0690-492f-962f-f28db8eb1bc0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac2b3720-0690-492f-962f-f28db8eb1bc0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-ac2b3720-0690-492f-962f-f28db8eb1bc0 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ac2b3720-0690-492f-962f-f28db8eb1bc0 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ac2b3720-0690-492f-962f-f28db8eb1bc0 {
  line-height: 2em;
}
}@media (max-width: 767px){#s-ac2b3720-0690-492f-962f-f28db8eb1bc0 {
  margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
}

  #s-ac2b3720-0690-492f-962f-f28db8eb1bc0-root {
    text-align: center;
  }


#s-ac2b3720-0690-492f-962f-f28db8eb1bc0.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ac2b3720-0690-492f-962f-f28db8eb1bc0-root {
    text-align: center;
  }


#s-ac2b3720-0690-492f-962f-f28db8eb1bc0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ac2b3720-0690-492f-962f-f28db8eb1bc0-root {
    text-align: center;
  }


#s-ac2b3720-0690-492f-962f-f28db8eb1bc0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ac2b3720-0690-492f-962f-f28db8eb1bc0-root {
    text-align: center;
  }


#s-ac2b3720-0690-492f-962f-f28db8eb1bc0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ac2b3720-0690-492f-962f-f28db8eb1bc0-root {
    text-align: center;
  }


#s-ac2b3720-0690-492f-962f-f28db8eb1bc0.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169 {
  line-height: 2em;
}
}

  #s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169-root {
    text-align: center;
  }


#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169-root {
    text-align: center;
  }


#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169-root {
    text-align: center;
  }


#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169-root {
    text-align: center;
  }


#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169-root {
    text-align: center;
  }


#s-0d6df1d3-7bc1-427e-baed-d0d13bf7d169.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-d830276a-8978-4799-95c8-515798a3b40e {
  min-height: 50px;
}








#s-d830276a-8978-4799-95c8-515798a3b40e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d830276a-8978-4799-95c8-515798a3b40e.shg-box.shg-c {
  justify-content: center;
}

#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  text-align: center;
}
@media (min-width: 1200px){#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-4160ea3e-8083-4c04-b809-73d2b812e400 {
  overflow: hidden;
  
  
}







  #s-4160ea3e-8083-4c04-b809-73d2b812e400 img.shogun-image {
    

    
    
    
  }


#s-4160ea3e-8083-4c04-b809-73d2b812e400 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6f9218bf-ae0c-4737-b9f0-c332f6ea2c2e {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-6f9218bf-ae0c-4737-b9f0-c332f6ea2c2e {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-6f9218bf-ae0c-4737-b9f0-c332f6ea2c2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f9218bf-ae0c-4737-b9f0-c332f6ea2c2e.shg-box.shg-c {
  justify-content: center;
}

#s-5291b925-c21d-4291-a3c4-284f73498f30 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-5291b925-c21d-4291-a3c4-284f73498f30 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5291b925-c21d-4291-a3c4-284f73498f30 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5291b925-c21d-4291-a3c4-284f73498f30 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-5291b925-c21d-4291-a3c4-284f73498f30 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-5291b925-c21d-4291-a3c4-284f73498f30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-5291b925-c21d-4291-a3c4-284f73498f30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  text-align: center;
}
@media (min-width: 1200px){#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 20px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  margin-top: 20px;
margin-left: 200px;
margin-bottom: 20px;
margin-right: 200px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 {
  overflow: hidden;
  
  
}







  #s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 img.shogun-image {
    

    
    
    
  }


#s-0682cce8-96d0-4d4c-9d31-1f2f6a4f6545 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-dda72f23-fbc2-4747-ac86-7275e4695209 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dda72f23-fbc2-4747-ac86-7275e4695209 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-dda72f23-fbc2-4747-ac86-7275e4695209 {
  margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-dda72f23-fbc2-4747-ac86-7275e4695209 {
  margin-top: 30px;
}
}
@media (min-width: 0px) {
[id="s-dda72f23-fbc2-4747-ac86-7275e4695209"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dda72f23-fbc2-4747-ac86-7275e4695209"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-dda72f23-fbc2-4747-ac86-7275e4695209"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-dda72f23-fbc2-4747-ac86-7275e4695209"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-7c0f14dd-381b-4b04-a10d-96764e03efda {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7c0f14dd-381b-4b04-a10d-96764e03efda:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7c0f14dd-381b-4b04-a10d-96764e03efda:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7c0f14dd-381b-4b04-a10d-96764e03efda-root {
    text-align: center;
  }


#s-7c0f14dd-381b-4b04-a10d-96764e03efda.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7c0f14dd-381b-4b04-a10d-96764e03efda-root {
    text-align: center;
  }


#s-7c0f14dd-381b-4b04-a10d-96764e03efda.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7c0f14dd-381b-4b04-a10d-96764e03efda-root {
    text-align: center;
  }


#s-7c0f14dd-381b-4b04-a10d-96764e03efda.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7c0f14dd-381b-4b04-a10d-96764e03efda-root {
    text-align: center;
  }


#s-7c0f14dd-381b-4b04-a10d-96764e03efda.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7c0f14dd-381b-4b04-a10d-96764e03efda-root {
    text-align: center;
  }


#s-7c0f14dd-381b-4b04-a10d-96764e03efda.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-62b9fc25-0d88-45b4-a400-564fb34a1da5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-62b9fc25-0d88-45b4-a400-564fb34a1da5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-62b9fc25-0d88-45b4-a400-564fb34a1da5:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-62b9fc25-0d88-45b4-a400-564fb34a1da5 {
  margin-top: 10px;
margin-bottom: 10px;
}
}

  #s-62b9fc25-0d88-45b4-a400-564fb34a1da5-root {
    text-align: center;
  }


#s-62b9fc25-0d88-45b4-a400-564fb34a1da5.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-62b9fc25-0d88-45b4-a400-564fb34a1da5-root {
    text-align: center;
  }


#s-62b9fc25-0d88-45b4-a400-564fb34a1da5.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62b9fc25-0d88-45b4-a400-564fb34a1da5-root {
    text-align: center;
  }


#s-62b9fc25-0d88-45b4-a400-564fb34a1da5.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62b9fc25-0d88-45b4-a400-564fb34a1da5-root {
    text-align: center;
  }


#s-62b9fc25-0d88-45b4-a400-564fb34a1da5.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-62b9fc25-0d88-45b4-a400-564fb34a1da5-root {
    text-align: center;
  }


#s-62b9fc25-0d88-45b4-a400-564fb34a1da5.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-b17cf543-b7f4-4caa-ad91-4baaaff46f4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4 {
  margin-bottom: 10px;
}
}

  #s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4-root {
    text-align: center;
  }


#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4-root {
    text-align: center;
  }


#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4-root {
    text-align: center;
  }


#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4-root {
    text-align: center;
  }


#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4-root {
    text-align: center;
  }


#s-8a1b26a2-fcc7-45d8-8be6-10651e92cdd4.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-ce9840bd-db9f-4556-9d9a-930539b21320 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-ce9840bd-db9f-4556-9d9a-930539b21320:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ce9840bd-db9f-4556-9d9a-930539b21320:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ce9840bd-db9f-4556-9d9a-930539b21320-root {
    text-align: center;
  }


#s-ce9840bd-db9f-4556-9d9a-930539b21320.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ce9840bd-db9f-4556-9d9a-930539b21320-root {
    text-align: center;
  }


#s-ce9840bd-db9f-4556-9d9a-930539b21320.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ce9840bd-db9f-4556-9d9a-930539b21320-root {
    text-align: center;
  }


#s-ce9840bd-db9f-4556-9d9a-930539b21320.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ce9840bd-db9f-4556-9d9a-930539b21320-root {
    text-align: center;
  }


#s-ce9840bd-db9f-4556-9d9a-930539b21320.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ce9840bd-db9f-4556-9d9a-930539b21320-root {
    text-align: center;
  }


#s-ce9840bd-db9f-4556-9d9a-930539b21320.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-9aac32a8-23bf-439a-a4f3-d407f6d1303d {
  min-height: 50px;
}








#s-9aac32a8-23bf-439a-a4f3-d407f6d1303d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9aac32a8-23bf-439a-a4f3-d407f6d1303d.shg-box.shg-c {
  justify-content: center;
}

#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  text-align: center;
}
@media (min-width: 1200px){#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 {
  overflow: hidden;
  
  
}







  #s-deeff224-e7a9-4968-92cc-a76218f9fbf0 img.shogun-image {
    

    
    
    
  }


#s-deeff224-e7a9-4968-92cc-a76218f9fbf0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1d16eaab-5f70-456b-9a56-fcace5a1991e {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-1d16eaab-5f70-456b-9a56-fcace5a1991e {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-1d16eaab-5f70-456b-9a56-fcace5a1991e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1d16eaab-5f70-456b-9a56-fcace5a1991e.shg-box.shg-c {
  justify-content: center;
}

#s-463852be-44c2-45ee-ab66-19d539730841 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-463852be-44c2-45ee-ab66-19d539730841 {
  margin-top: 50px;
margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-463852be-44c2-45ee-ab66-19d539730841 {
  margin-top: 50px;
margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-463852be-44c2-45ee-ab66-19d539730841 {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-463852be-44c2-45ee-ab66-19d539730841 {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}
#s-463852be-44c2-45ee-ab66-19d539730841 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-463852be-44c2-45ee-ab66-19d539730841 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-c654d292-b8d2-4656-a212-eeb1280d6275 {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c654d292-b8d2-4656-a212-eeb1280d6275 {
  margin-left: 350px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c654d292-b8d2-4656-a212-eeb1280d6275 {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-c654d292-b8d2-4656-a212-eeb1280d6275 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.0px);
}

}

@media (min-width: 768px) {
[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.0px);
}

[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.0px);
}

}

@media (min-width: 992px) {
[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.0px);
}

[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.0px);
}

}

@media (min-width: 1200px) {
[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.0px);
}

[id="s-c654d292-b8d2-4656-a212-eeb1280d6275"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.0px);
}

}

#s-7ea8e985-3a96-486b-9221-62ddac4569a5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7ea8e985-3a96-486b-9221-62ddac4569a5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-7ea8e985-3a96-486b-9221-62ddac4569a5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7ea8e985-3a96-486b-9221-62ddac4569a5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-7ea8e985-3a96-486b-9221-62ddac4569a5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


}
#s-9a19fe51-1542-40db-b203-1cbc0775581a {
  text-align: center;
}
@media (min-width: 1200px){#s-9a19fe51-1542-40db-b203-1cbc0775581a {
  margin-top: 70px;
margin-bottom: 70px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9a19fe51-1542-40db-b203-1cbc0775581a {
  margin-top: 70px;
margin-bottom: 70px;
}
}@media (max-width: 767px){#s-9a19fe51-1542-40db-b203-1cbc0775581a {
  margin-top: 70px;
margin-bottom: 70px;
}
}
#s-9a19fe51-1542-40db-b203-1cbc0775581a {
  overflow: hidden;
  
  
}







  #s-9a19fe51-1542-40db-b203-1cbc0775581a img.shogun-image {
    

    
    
    
  }


#s-9a19fe51-1542-40db-b203-1cbc0775581a .shogun-image-content {
  
    justify-content: center;
  
}

#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 {
  padding-top: 0px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 {
  padding-top: 0px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 {
  margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 {
  margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-50cb0a37-b0bd-4718-af17-949d6d2ea8c2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-4db907c6-dee4-4119-8158-bb2967092828 {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4db907c6-dee4-4119-8158-bb2967092828 {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4db907c6-dee4-4119-8158-bb2967092828 {
  margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-4db907c6-dee4-4119-8158-bb2967092828"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4db907c6-dee4-4119-8158-bb2967092828"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-4db907c6-dee4-4119-8158-bb2967092828"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-4db907c6-dee4-4119-8158-bb2967092828"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-078c5411-2843-4501-94ff-a17e6ccb8600 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-078c5411-2843-4501-94ff-a17e6ccb8600:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-078c5411-2843-4501-94ff-a17e6ccb8600:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-078c5411-2843-4501-94ff-a17e6ccb8600 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-078c5411-2843-4501-94ff-a17e6ccb8600 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-078c5411-2843-4501-94ff-a17e6ccb8600 {
  line-height: 2em;
}
}

  #s-078c5411-2843-4501-94ff-a17e6ccb8600-root {
    text-align: center;
  }


#s-078c5411-2843-4501-94ff-a17e6ccb8600.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-078c5411-2843-4501-94ff-a17e6ccb8600-root {
    text-align: center;
  }


#s-078c5411-2843-4501-94ff-a17e6ccb8600.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-078c5411-2843-4501-94ff-a17e6ccb8600-root {
    text-align: center;
  }


#s-078c5411-2843-4501-94ff-a17e6ccb8600.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-078c5411-2843-4501-94ff-a17e6ccb8600-root {
    text-align: center;
  }


#s-078c5411-2843-4501-94ff-a17e6ccb8600.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-078c5411-2843-4501-94ff-a17e6ccb8600-root {
    text-align: center;
  }


#s-078c5411-2843-4501-94ff-a17e6ccb8600.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a {
  line-height: 2em;
}
}@media (max-width: 767px){#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a {
  margin-top: 10px;
margin-bottom: 10px;
}
}

  #s-3a6c0eea-3656-4aa6-a2e2-462149494d0a-root {
    text-align: center;
  }


#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3a6c0eea-3656-4aa6-a2e2-462149494d0a-root {
    text-align: center;
  }


#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3a6c0eea-3656-4aa6-a2e2-462149494d0a-root {
    text-align: center;
  }


#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3a6c0eea-3656-4aa6-a2e2-462149494d0a-root {
    text-align: center;
  }


#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3a6c0eea-3656-4aa6-a2e2-462149494d0a-root {
    text-align: center;
  }


#s-3a6c0eea-3656-4aa6-a2e2-462149494d0a.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-35325d22-484a-44ae-9616-5f56ae165f6a {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-35325d22-484a-44ae-9616-5f56ae165f6a {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-35325d22-484a-44ae-9616-5f56ae165f6a {
  margin-top: 10px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-35325d22-484a-44ae-9616-5f56ae165f6a {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-35325d22-484a-44ae-9616-5f56ae165f6a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35325d22-484a-44ae-9616-5f56ae165f6a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-35325d22-484a-44ae-9616-5f56ae165f6a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-35325d22-484a-44ae-9616-5f56ae165f6a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-b7242441-cae4-4270-ba74-a58a14351feb {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b7242441-cae4-4270-ba74-a58a14351feb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b7242441-cae4-4270-ba74-a58a14351feb:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-b7242441-cae4-4270-ba74-a58a14351feb {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b7242441-cae4-4270-ba74-a58a14351feb {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b7242441-cae4-4270-ba74-a58a14351feb {
  line-height: 2em;
}
}@media (max-width: 767px){#s-b7242441-cae4-4270-ba74-a58a14351feb {
  margin-bottom: 10px;
}
}

  #s-b7242441-cae4-4270-ba74-a58a14351feb-root {
    text-align: center;
  }


#s-b7242441-cae4-4270-ba74-a58a14351feb.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b7242441-cae4-4270-ba74-a58a14351feb-root {
    text-align: center;
  }


#s-b7242441-cae4-4270-ba74-a58a14351feb.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b7242441-cae4-4270-ba74-a58a14351feb-root {
    text-align: center;
  }


#s-b7242441-cae4-4270-ba74-a58a14351feb.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b7242441-cae4-4270-ba74-a58a14351feb-root {
    text-align: center;
  }


#s-b7242441-cae4-4270-ba74-a58a14351feb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b7242441-cae4-4270-ba74-a58a14351feb-root {
    text-align: center;
  }


#s-b7242441-cae4-4270-ba74-a58a14351feb.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-08ade9a7-d964-469b-8eef-f5765fe69ad3 {
  min-height: 50px;
}








#s-08ade9a7-d964-469b-8eef-f5765fe69ad3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-08ade9a7-d964-469b-8eef-f5765fe69ad3.shg-box.shg-c {
  justify-content: center;
}

#s-50617952-d990-41f0-995f-379fa82ebc1f {
  text-align: center;
}
@media (min-width: 1200px){#s-50617952-d990-41f0-995f-379fa82ebc1f {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-50617952-d990-41f0-995f-379fa82ebc1f {
  margin-left: 250px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-50617952-d990-41f0-995f-379fa82ebc1f {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-50617952-d990-41f0-995f-379fa82ebc1f {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-50617952-d990-41f0-995f-379fa82ebc1f {
  overflow: hidden;
  
  
}







  #s-50617952-d990-41f0-995f-379fa82ebc1f img.shogun-image {
    

    
    
    
  }


#s-50617952-d990-41f0-995f-379fa82ebc1f .shogun-image-content {
  
    justify-content: center;
  
}

#s-7526a724-5763-40b6-be36-dc07acd5be62 {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-7526a724-5763-40b6-be36-dc07acd5be62 {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-7526a724-5763-40b6-be36-dc07acd5be62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7526a724-5763-40b6-be36-dc07acd5be62.shg-box.shg-c {
  justify-content: center;
}

#s-284308b7-7351-4c7e-8dd7-e7bf116917df {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-284308b7-7351-4c7e-8dd7-e7bf116917df {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-284308b7-7351-4c7e-8dd7-e7bf116917df {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-284308b7-7351-4c7e-8dd7-e7bf116917df {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-284308b7-7351-4c7e-8dd7-e7bf116917df {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-284308b7-7351-4c7e-8dd7-e7bf116917df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-284308b7-7351-4c7e-8dd7-e7bf116917df .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-9d77f325-0d1f-46de-9d76-7edaae11936b {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9d77f325-0d1f-46de-9d76-7edaae11936b {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 50px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9d77f325-0d1f-46de-9d76-7edaae11936b {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-9d77f325-0d1f-46de-9d76-7edaae11936b {
  margin-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-9d77f325-0d1f-46de-9d76-7edaae11936b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9d77f325-0d1f-46de-9d76-7edaae11936b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-9d77f325-0d1f-46de-9d76-7edaae11936b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d77f325-0d1f-46de-9d76-7edaae11936b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-202d23ce-06bc-4a77-ac0e-31225a5438c4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-202d23ce-06bc-4a77-ac0e-31225a5438c4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-202d23ce-06bc-4a77-ac0e-31225a5438c4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-202d23ce-06bc-4a77-ac0e-31225a5438c4 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-202d23ce-06bc-4a77-ac0e-31225a5438c4 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-202d23ce-06bc-4a77-ac0e-31225a5438c4 {
  line-height: 2em;
}
}

  #s-202d23ce-06bc-4a77-ac0e-31225a5438c4-root {
    text-align: center;
  }


#s-202d23ce-06bc-4a77-ac0e-31225a5438c4.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-202d23ce-06bc-4a77-ac0e-31225a5438c4-root {
    text-align: center;
  }


#s-202d23ce-06bc-4a77-ac0e-31225a5438c4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-202d23ce-06bc-4a77-ac0e-31225a5438c4-root {
    text-align: center;
  }


#s-202d23ce-06bc-4a77-ac0e-31225a5438c4.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-202d23ce-06bc-4a77-ac0e-31225a5438c4-root {
    text-align: center;
  }


#s-202d23ce-06bc-4a77-ac0e-31225a5438c4.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-202d23ce-06bc-4a77-ac0e-31225a5438c4-root {
    text-align: center;
  }


#s-202d23ce-06bc-4a77-ac0e-31225a5438c4.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f {
  line-height: 2em;
}
}@media (max-width: 767px){#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f {
  margin-top: 10px;
}
}

  #s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f-root {
    text-align: center;
  }


#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f-root {
    text-align: center;
  }


#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f-root {
    text-align: center;
  }


#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f-root {
    text-align: center;
  }


#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f-root {
    text-align: center;
  }


#s-5ae5fa58-7f00-4ee8-b296-819801ff6b2f.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-cfeb5aa2-11ca-4851-a88f-470d35e63cee {
  min-height: 50px;
}








#s-cfeb5aa2-11ca-4851-a88f-470d35e63cee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cfeb5aa2-11ca-4851-a88f-470d35e63cee.shg-box.shg-c {
  justify-content: center;
}

#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  text-align: center;
}
@media (min-width: 1200px){#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  margin-top: 20px;
margin-left: 250px;
margin-bottom: 20px;
margin-right: 250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  margin-top: 10px;
margin-left: 250px;
margin-bottom: 10px;
margin-right: 250px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  margin-left: 10px;
margin-right: 10px;
}
}
#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 {
  overflow: hidden;
  
  
}







  #s-da69cdd6-1919-49b6-b575-f0aa50045bd7 img.shogun-image {
    

    
    
    
  }


#s-da69cdd6-1919-49b6-b575-f0aa50045bd7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0adc36a2-52d0-4eb9-87af-f10de18fda1b {
  min-height: 50px;
background-color: rgba(232, 232, 232, 1);
}
@media (max-width: 767px){#s-0adc36a2-52d0-4eb9-87af-f10de18fda1b {
  margin-top: 30px;
margin-bottom: 30px;
}
}







#s-0adc36a2-52d0-4eb9-87af-f10de18fda1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0adc36a2-52d0-4eb9-87af-f10de18fda1b.shg-box.shg-c {
  justify-content: center;
}

#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 {
  padding-top: 50px;
padding-left: 350px;
padding-bottom: 50px;
padding-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}


@media (max-width: 767px){#s-ef5fff7c-1cbe-4e6b-a514-34ca0d959f33 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}


}
@media (min-width: 1200px){#s-f33251e0-9971-4fc2-86d7-05fe75cf19cd {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f33251e0-9971-4fc2-86d7-05fe75cf19cd {
  margin-top: 50px;
margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f33251e0-9971-4fc2-86d7-05fe75cf19cd {
  margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-f33251e0-9971-4fc2-86d7-05fe75cf19cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f33251e0-9971-4fc2-86d7-05fe75cf19cd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-f33251e0-9971-4fc2-86d7-05fe75cf19cd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-f33251e0-9971-4fc2-86d7-05fe75cf19cd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: rgba(191, 0, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3 {
  line-height: 2em;
}
}

  #s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3-root {
    text-align: center;
  }


#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3-root {
    text-align: center;
  }


#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3-root {
    text-align: center;
  }


#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3-root {
    text-align: center;
  }


#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3-root {
    text-align: center;
  }


#s-f0ca93a4-659f-4995-b6ea-10e63d1be1e3.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 40px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0 {
  line-height: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0 {
  line-height: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0 {
  line-height: 2em;
}
}@media (max-width: 767px){#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0 {
  margin-top: 10px;
}
}

  #s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0-root {
    text-align: center;
  }


#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0.shg-btn {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0-root {
    text-align: center;
  }


#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0-root {
    text-align: center;
  }


#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0-root {
    text-align: center;
  }


#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0-root {
    text-align: center;
  }


#s-a74b5f77-c3cf-47fb-93e8-8eb6a195c7a0.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-64465c3e-2218-436a-a1f3-05c8369e0d84 {
  margin-top: 100px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-64465c3e-2218-436a-a1f3-05c8369e0d84 {
  margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-64465c3e-2218-436a-a1f3-05c8369e0d84 {
  margin-left: 200px;
margin-right: 200px;
}
}
#s-64465c3e-2218-436a-a1f3-05c8369e0d84 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


@media (max-width: 767px){#s-64465c3e-2218-436a-a1f3-05c8369e0d84 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  
  
}


}
#s-570d9097-9988-4763-adce-425b14b8e877 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-570d9097-9988-4763-adce-425b14b8e877:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-570d9097-9988-4763-adce-425b14b8e877:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-570d9097-9988-4763-adce-425b14b8e877 {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-570d9097-9988-4763-adce-425b14b8e877 {
  margin-top: 20px;
margin-left: 350px;
margin-bottom: 20px;
margin-right: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-570d9097-9988-4763-adce-425b14b8e877 {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-570d9097-9988-4763-adce-425b14b8e877 {
  margin-top: 20px;
}
}

  #s-570d9097-9988-4763-adce-425b14b8e877-root {
    text-align: center;
  }


#s-570d9097-9988-4763-adce-425b14b8e877.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-570d9097-9988-4763-adce-425b14b8e877-root {
    text-align: center;
  }


#s-570d9097-9988-4763-adce-425b14b8e877.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-570d9097-9988-4763-adce-425b14b8e877-root {
    text-align: center;
  }


#s-570d9097-9988-4763-adce-425b14b8e877.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-570d9097-9988-4763-adce-425b14b8e877-root {
    text-align: center;
  }


#s-570d9097-9988-4763-adce-425b14b8e877.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-570d9097-9988-4763-adce-425b14b8e877-root {
    text-align: center;
  }


#s-570d9097-9988-4763-adce-425b14b8e877.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-1adf1ac4-bf07-405c-af85-c66838942c32 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1adf1ac4-bf07-405c-af85-c66838942c32 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1adf1ac4-bf07-405c-af85-c66838942c32 {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-1adf1ac4-bf07-405c-af85-c66838942c32 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-1adf1ac4-bf07-405c-af85-c66838942c32"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1adf1ac4-bf07-405c-af85-c66838942c32"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.666666666666666px);
}

}

@media (min-width: 992px) {
[id="s-1adf1ac4-bf07-405c-af85-c66838942c32"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.666666666666666px);
}

}

@media (min-width: 1200px) {
[id="s-1adf1ac4-bf07-405c-af85-c66838942c32"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.666666666666666px);
}

}

#s-327a3bb0-2e57-4dbf-ab2a-6d0f11476925 {
  text-align: center;
}

#s-327a3bb0-2e57-4dbf-ab2a-6d0f11476925 {
  overflow: hidden;
  
  
}







  #s-327a3bb0-2e57-4dbf-ab2a-6d0f11476925 img.shogun-image {
    

    
    
    
  }


#s-327a3bb0-2e57-4dbf-ab2a-6d0f11476925 .shogun-image-content {
  
    justify-content: center;
  
}

#s-eda74aaa-031b-4b97-ad4f-ce1df3e5edc2 {
  text-align: center;
}

#s-eda74aaa-031b-4b97-ad4f-ce1df3e5edc2 {
  overflow: hidden;
  
  
}







  #s-eda74aaa-031b-4b97-ad4f-ce1df3e5edc2 img.shogun-image {
    

    
    
    
  }


#s-eda74aaa-031b-4b97-ad4f-ce1df3e5edc2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d78505c3-1095-497a-adb8-b2f48c11cdef {
  text-align: center;
}

#s-d78505c3-1095-497a-adb8-b2f48c11cdef {
  overflow: hidden;
  
  
}







  #s-d78505c3-1095-497a-adb8-b2f48c11cdef img.shogun-image {
    

    
    
    
  }


#s-d78505c3-1095-497a-adb8-b2f48c11cdef .shogun-image-content {
  
    justify-content: center;
  
}

#s-b11b093d-a93d-4e44-9212-59272a5160e4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-b11b093d-a93d-4e44-9212-59272a5160e4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b11b093d-a93d-4e44-9212-59272a5160e4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-b11b093d-a93d-4e44-9212-59272a5160e4 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b11b093d-a93d-4e44-9212-59272a5160e4 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b11b093d-a93d-4e44-9212-59272a5160e4 {
  margin-top: 20px;
margin-bottom: 5px;
}
}

  #s-b11b093d-a93d-4e44-9212-59272a5160e4-root {
    text-align: center;
  }


#s-b11b093d-a93d-4e44-9212-59272a5160e4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b11b093d-a93d-4e44-9212-59272a5160e4-root {
    text-align: center;
  }


#s-b11b093d-a93d-4e44-9212-59272a5160e4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b11b093d-a93d-4e44-9212-59272a5160e4-root {
    text-align: center;
  }


#s-b11b093d-a93d-4e44-9212-59272a5160e4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b11b093d-a93d-4e44-9212-59272a5160e4-root {
    text-align: center;
  }


#s-b11b093d-a93d-4e44-9212-59272a5160e4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b11b093d-a93d-4e44-9212-59272a5160e4-root {
    text-align: center;
  }


#s-b11b093d-a93d-4e44-9212-59272a5160e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-c1583c11-e32a-4e55-8945-512c0fcd5d13 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c1583c11-e32a-4e55-8945-512c0fcd5d13 {
  margin-left: 330px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c1583c11-e32a-4e55-8945-512c0fcd5d13 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-c1583c11-e32a-4e55-8945-512c0fcd5d13 {
  margin-left: 30px;
margin-right: 30px;
display: none;
}
#s-c1583c11-e32a-4e55-8945-512c0fcd5d13, #wrap-s-c1583c11-e32a-4e55-8945-512c0fcd5d13, #wrap-content-s-c1583c11-e32a-4e55-8945-512c0fcd5d13 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c1583c11-e32a-4e55-8945-512c0fcd5d13"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c1583c11-e32a-4e55-8945-512c0fcd5d13"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c1583c11-e32a-4e55-8945-512c0fcd5d13"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1583c11-e32a-4e55-8945-512c0fcd5d13"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-2c9a997e-ea46-4b37-afa0-a2e2230a98ea {
  text-align: center;
}

#s-2c9a997e-ea46-4b37-afa0-a2e2230a98ea {
  overflow: hidden;
  
  
}







  #s-2c9a997e-ea46-4b37-afa0-a2e2230a98ea img.shogun-image {
    

    
    
    
  }


#s-2c9a997e-ea46-4b37-afa0-a2e2230a98ea .shogun-image-content {
  
    justify-content: center;
  
}

#s-bcd26dd6-0a67-472e-a966-80502d20ff5e {
  text-align: center;
}

#s-bcd26dd6-0a67-472e-a966-80502d20ff5e {
  overflow: hidden;
  
  
}







  #s-bcd26dd6-0a67-472e-a966-80502d20ff5e img.shogun-image {
    

    
    
    
  }


#s-bcd26dd6-0a67-472e-a966-80502d20ff5e .shogun-image-content {
  
    justify-content: center;
  
}

#s-08ab519c-a846-46aa-b0a4-746f6a02df65 {
  max-width: 1573px;
aspect-ratio: 1/1;
text-align: center;
}

#s-08ab519c-a846-46aa-b0a4-746f6a02df65 {
  overflow: hidden;
  
  
      max-width: 1573px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-08ab519c-a846-46aa-b0a4-746f6a02df65 img.shogun-image,
  #s-08ab519c-a846-46aa-b0a4-746f6a02df65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08ab519c-a846-46aa-b0a4-746f6a02df65 {
    width: 100%;
    height: auto;
  }



  #s-08ab519c-a846-46aa-b0a4-746f6a02df65 img.shogun-image {
    

    
    
    
  }


#s-08ab519c-a846-46aa-b0a4-746f6a02df65 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 {
  display: none;
}
#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-content-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 {
  display: none;
}
#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-content-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 {
  display: none;
}
#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515, #wrap-content-s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 { display: none !important; }}@media (max-width: 767px){#s-333bd3fe-d842-495f-8f52-e1a6ee8a1515 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-333bd3fe-d842-495f-8f52-e1a6ee8a1515"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-333bd3fe-d842-495f-8f52-e1a6ee8a1515"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-333bd3fe-d842-495f-8f52-e1a6ee8a1515"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-333bd3fe-d842-495f-8f52-e1a6ee8a1515"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-bf065589-6aa7-4599-bfa0-3bd2c2150ff6 {
  text-align: center;
}

#s-bf065589-6aa7-4599-bfa0-3bd2c2150ff6 {
  overflow: hidden;
  
  
}







  #s-bf065589-6aa7-4599-bfa0-3bd2c2150ff6 img.shogun-image {
    

    
    
    
  }


#s-bf065589-6aa7-4599-bfa0-3bd2c2150ff6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1ed10ac7-b109-49a4-910e-cadc5021d5ea {
  text-align: center;
}

#s-1ed10ac7-b109-49a4-910e-cadc5021d5ea {
  overflow: hidden;
  
  
}







  #s-1ed10ac7-b109-49a4-910e-cadc5021d5ea img.shogun-image {
    

    
    
    
  }


#s-1ed10ac7-b109-49a4-910e-cadc5021d5ea .shogun-image-content {
  
    justify-content: center;
  
}

#s-81b83304-e1fb-4b99-9e1a-c89d5f33bad6 {
  text-align: center;
}

#s-81b83304-e1fb-4b99-9e1a-c89d5f33bad6 {
  overflow: hidden;
  
  
}







  #s-81b83304-e1fb-4b99-9e1a-c89d5f33bad6 img.shogun-image {
    

    
    
    
  }


#s-81b83304-e1fb-4b99-9e1a-c89d5f33bad6 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-e7191e6d-368c-4d19-9817-829c91f40519 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e7191e6d-368c-4d19-9817-829c91f40519 {
  margin-top: 50px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e7191e6d-368c-4d19-9817-829c91f40519 {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-e7191e6d-368c-4d19-9817-829c91f40519 {
  margin-left: 30px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-e7191e6d-368c-4d19-9817-829c91f40519"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 9.5px);
}

}

@media (min-width: 768px) {
[id="s-e7191e6d-368c-4d19-9817-829c91f40519"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 14.25px);
}

}

@media (min-width: 992px) {
[id="s-e7191e6d-368c-4d19-9817-829c91f40519"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 14.25px);
}

}

@media (min-width: 1200px) {
[id="s-e7191e6d-368c-4d19-9817-829c91f40519"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 14.25px);
}

}

#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1-root {
    text-align: center;
  }


#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1-root {
    text-align: center;
  }


#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1-root {
    text-align: center;
  }


#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1-root {
    text-align: center;
  }


#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1-root {
    text-align: center;
  }


#s-ba1bb7e6-1f1d-4e95-a163-d59fda7b96d1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-d85238ef-0f9c-416d-90f3-6174a41042a5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d85238ef-0f9c-416d-90f3-6174a41042a5 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-d85238ef-0f9c-416d-90f3-6174a41042a5 {
  margin-top: 20px;
margin-bottom: 20px;
}
}
#s-d85238ef-0f9c-416d-90f3-6174a41042a5 {
  overflow: hidden;
  
  
}







  #s-d85238ef-0f9c-416d-90f3-6174a41042a5 img.shogun-image {
    

    
    
    
  }


#s-d85238ef-0f9c-416d-90f3-6174a41042a5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d2553025-c041-4fe3-b22d-c380a98ad53f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-d2553025-c041-4fe3-b22d-c380a98ad53f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d2553025-c041-4fe3-b22d-c380a98ad53f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d2553025-c041-4fe3-b22d-c380a98ad53f-root {
    text-align: center;
  }


#s-d2553025-c041-4fe3-b22d-c380a98ad53f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d2553025-c041-4fe3-b22d-c380a98ad53f-root {
    text-align: center;
  }


#s-d2553025-c041-4fe3-b22d-c380a98ad53f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d2553025-c041-4fe3-b22d-c380a98ad53f-root {
    text-align: center;
  }


#s-d2553025-c041-4fe3-b22d-c380a98ad53f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d2553025-c041-4fe3-b22d-c380a98ad53f-root {
    text-align: center;
  }


#s-d2553025-c041-4fe3-b22d-c380a98ad53f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d2553025-c041-4fe3-b22d-c380a98ad53f-root {
    text-align: center;
  }


#s-d2553025-c041-4fe3-b22d-c380a98ad53f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-5fb5a68c-462f-4de6-a893-3c07f13ec79d {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5fb5a68c-462f-4de6-a893-3c07f13ec79d {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-5fb5a68c-462f-4de6-a893-3c07f13ec79d {
  margin-top: 20px;
margin-bottom: 20px;
}
}
#s-5fb5a68c-462f-4de6-a893-3c07f13ec79d {
  overflow: hidden;
  
  
}







  #s-5fb5a68c-462f-4de6-a893-3c07f13ec79d img.shogun-image {
    

    
    
    
  }


#s-5fb5a68c-462f-4de6-a893-3c07f13ec79d .shogun-image-content {
  
    justify-content: center;
  
}

#s-144d1491-8288-4741-8c73-7e5bfc635eeb {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-144d1491-8288-4741-8c73-7e5bfc635eeb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-144d1491-8288-4741-8c73-7e5bfc635eeb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-144d1491-8288-4741-8c73-7e5bfc635eeb-root {
    text-align: center;
  }


#s-144d1491-8288-4741-8c73-7e5bfc635eeb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-144d1491-8288-4741-8c73-7e5bfc635eeb-root {
    text-align: center;
  }


#s-144d1491-8288-4741-8c73-7e5bfc635eeb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-144d1491-8288-4741-8c73-7e5bfc635eeb-root {
    text-align: center;
  }


#s-144d1491-8288-4741-8c73-7e5bfc635eeb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-144d1491-8288-4741-8c73-7e5bfc635eeb-root {
    text-align: center;
  }


#s-144d1491-8288-4741-8c73-7e5bfc635eeb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-144d1491-8288-4741-8c73-7e5bfc635eeb-root {
    text-align: center;
  }


#s-144d1491-8288-4741-8c73-7e5bfc635eeb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d {
  margin-top: 20px;
}
}
#s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d {
  overflow: hidden;
  
  
}







  #s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d img.shogun-image {
    

    
    
    
  }


#s-43d0ac0d-aa83-4a65-b6cf-08814e29b97d .shogun-image-content {
  
    justify-content: center;
  
}

#s-a5c378e3-522d-4423-9d56-85e3ee82312b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-a5c378e3-522d-4423-9d56-85e3ee82312b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a5c378e3-522d-4423-9d56-85e3ee82312b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a5c378e3-522d-4423-9d56-85e3ee82312b-root {
    text-align: center;
  }


#s-a5c378e3-522d-4423-9d56-85e3ee82312b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a5c378e3-522d-4423-9d56-85e3ee82312b-root {
    text-align: center;
  }


#s-a5c378e3-522d-4423-9d56-85e3ee82312b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a5c378e3-522d-4423-9d56-85e3ee82312b-root {
    text-align: center;
  }


#s-a5c378e3-522d-4423-9d56-85e3ee82312b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a5c378e3-522d-4423-9d56-85e3ee82312b-root {
    text-align: center;
  }


#s-a5c378e3-522d-4423-9d56-85e3ee82312b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a5c378e3-522d-4423-9d56-85e3ee82312b-root {
    text-align: center;
  }


#s-a5c378e3-522d-4423-9d56-85e3ee82312b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 {
  margin-top: 20px;
}
}
#s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 {
  overflow: hidden;
  
  
}







  #s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 img.shogun-image {
    

    
    
    
  }


#s-18ce5304-e75a-4aa3-bfcf-d3ce5f6bc488 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5aa30e3a-784f-4ead-9d87-50628ecff3d6 {
  margin-top: 100px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-5aa30e3a-784f-4ead-9d87-50628ecff3d6 {
  margin-left: 200px;
margin-right: 200px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5aa30e3a-784f-4ead-9d87-50628ecff3d6 {
  margin-left: 200px;
margin-right: 200px;
}
}
#s-5aa30e3a-784f-4ead-9d87-50628ecff3d6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  
}


@media (max-width: 767px){#s-5aa30e3a-784f-4ead-9d87-50628ecff3d6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Noto Sans JP";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  
  
}


}
@media (min-width: 1200px){#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea {
  display: none;
}
#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-content-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea {
  display: none;
}
#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-content-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea {
  display: none;
}
#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea, #wrap-content-s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea { display: none !important; }}@media (max-width: 767px){#s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
}
@media (min-width: 0px) {
[id="s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4fefeab6-dcd2-4531-9272-8eb19a06e5ea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-07d85728-0166-4701-bd3d-1f39eb766210 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-07d85728-0166-4701-bd3d-1f39eb766210:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-07d85728-0166-4701-bd3d-1f39eb766210:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-07d85728-0166-4701-bd3d-1f39eb766210-root {
    text-align: center;
  }


#s-07d85728-0166-4701-bd3d-1f39eb766210.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-07d85728-0166-4701-bd3d-1f39eb766210-root {
    text-align: center;
  }


#s-07d85728-0166-4701-bd3d-1f39eb766210.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-07d85728-0166-4701-bd3d-1f39eb766210-root {
    text-align: center;
  }


#s-07d85728-0166-4701-bd3d-1f39eb766210.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-07d85728-0166-4701-bd3d-1f39eb766210-root {
    text-align: center;
  }


#s-07d85728-0166-4701-bd3d-1f39eb766210.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-07d85728-0166-4701-bd3d-1f39eb766210-root {
    text-align: center;
  }


#s-07d85728-0166-4701-bd3d-1f39eb766210.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-2efb4082-b265-4ee1-82c7-69e5a4297f58 {
  text-align: center;
}
@media (max-width: 767px){#s-2efb4082-b265-4ee1-82c7-69e5a4297f58 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-2efb4082-b265-4ee1-82c7-69e5a4297f58 {
  overflow: hidden;
  
  
}







  #s-2efb4082-b265-4ee1-82c7-69e5a4297f58 img.shogun-image {
    

    
    
    
  }


#s-2efb4082-b265-4ee1-82c7-69e5a4297f58 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91 {
  margin-top: 20px;
}
}

  #s-1e706f8f-19ae-4c2f-a425-044c3afcbc91-root {
    text-align: center;
  }


#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1e706f8f-19ae-4c2f-a425-044c3afcbc91-root {
    text-align: center;
  }


#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1e706f8f-19ae-4c2f-a425-044c3afcbc91-root {
    text-align: center;
  }


#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1e706f8f-19ae-4c2f-a425-044c3afcbc91-root {
    text-align: center;
  }


#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1e706f8f-19ae-4c2f-a425-044c3afcbc91-root {
    text-align: center;
  }


#s-1e706f8f-19ae-4c2f-a425-044c3afcbc91.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-da395d98-1daa-459d-baeb-e58258d21d56 {
  text-align: center;
}

#s-da395d98-1daa-459d-baeb-e58258d21d56 {
  overflow: hidden;
  
  
}







  #s-da395d98-1daa-459d-baeb-e58258d21d56 img.shogun-image {
    

    
    
    
  }


#s-da395d98-1daa-459d-baeb-e58258d21d56 .shogun-image-content {
  
    justify-content: center;
  
}

#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-585a1c7f-87c1-4681-8bfc-3a10bcca089e-root {
    text-align: center;
  }


#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-585a1c7f-87c1-4681-8bfc-3a10bcca089e-root {
    text-align: center;
  }


#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-585a1c7f-87c1-4681-8bfc-3a10bcca089e-root {
    text-align: center;
  }


#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-585a1c7f-87c1-4681-8bfc-3a10bcca089e-root {
    text-align: center;
  }


#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-585a1c7f-87c1-4681-8bfc-3a10bcca089e-root {
    text-align: center;
  }


#s-585a1c7f-87c1-4681-8bfc-3a10bcca089e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-3cb8d1a0-8ae9-4ca7-81cc-28fae0a6a347 {
  text-align: center;
}
@media (max-width: 767px){#s-3cb8d1a0-8ae9-4ca7-81cc-28fae0a6a347 {
  margin-top: 10px;
}
}
#s-3cb8d1a0-8ae9-4ca7-81cc-28fae0a6a347 {
  overflow: hidden;
  
  
}







  #s-3cb8d1a0-8ae9-4ca7-81cc-28fae0a6a347 img.shogun-image {
    

    
    
    
  }


#s-3cb8d1a0-8ae9-4ca7-81cc-28fae0a6a347 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 1200px){#s-2da5b491-edc1-4ea7-8696-a3f89b34df77 {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2da5b491-edc1-4ea7-8696-a3f89b34df77 {
  margin-top: 20px;
margin-left: 330px;
margin-bottom: 20px;
margin-right: 330px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2da5b491-edc1-4ea7-8696-a3f89b34df77 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-2da5b491-edc1-4ea7-8696-a3f89b34df77 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
display: none;
}
#s-2da5b491-edc1-4ea7-8696-a3f89b34df77, #wrap-s-2da5b491-edc1-4ea7-8696-a3f89b34df77, #wrap-content-s-2da5b491-edc1-4ea7-8696-a3f89b34df77 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2da5b491-edc1-4ea7-8696-a3f89b34df77"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-2da5b491-edc1-4ea7-8696-a3f89b34df77"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2da5b491-edc1-4ea7-8696-a3f89b34df77"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2da5b491-edc1-4ea7-8696-a3f89b34df77"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-078b8560-7174-44bb-a632-49641916b32f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-078b8560-7174-44bb-a632-49641916b32f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-078b8560-7174-44bb-a632-49641916b32f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-078b8560-7174-44bb-a632-49641916b32f-root {
    text-align: center;
  }


#s-078b8560-7174-44bb-a632-49641916b32f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-078b8560-7174-44bb-a632-49641916b32f-root {
    text-align: center;
  }


#s-078b8560-7174-44bb-a632-49641916b32f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-078b8560-7174-44bb-a632-49641916b32f-root {
    text-align: center;
  }


#s-078b8560-7174-44bb-a632-49641916b32f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-078b8560-7174-44bb-a632-49641916b32f-root {
    text-align: center;
  }


#s-078b8560-7174-44bb-a632-49641916b32f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-078b8560-7174-44bb-a632-49641916b32f-root {
    text-align: center;
  }


#s-078b8560-7174-44bb-a632-49641916b32f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-a00dfeda-d4b7-4e6d-bdca-e0a62e8b2d9e {
  text-align: center;
}
@media (max-width: 767px){#s-a00dfeda-d4b7-4e6d-bdca-e0a62e8b2d9e {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-a00dfeda-d4b7-4e6d-bdca-e0a62e8b2d9e {
  overflow: hidden;
  
  
}







  #s-a00dfeda-d4b7-4e6d-bdca-e0a62e8b2d9e img.shogun-image {
    

    
    
    
  }


#s-a00dfeda-d4b7-4e6d-bdca-e0a62e8b2d9e .shogun-image-content {
  
    justify-content: center;
  
}

#s-44b7a89e-88c9-445c-aa67-73ea697a7dff {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-44b7a89e-88c9-445c-aa67-73ea697a7dff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-44b7a89e-88c9-445c-aa67-73ea697a7dff:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-44b7a89e-88c9-445c-aa67-73ea697a7dff-root {
    text-align: center;
  }


#s-44b7a89e-88c9-445c-aa67-73ea697a7dff.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-44b7a89e-88c9-445c-aa67-73ea697a7dff-root {
    text-align: center;
  }


#s-44b7a89e-88c9-445c-aa67-73ea697a7dff.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-44b7a89e-88c9-445c-aa67-73ea697a7dff-root {
    text-align: center;
  }


#s-44b7a89e-88c9-445c-aa67-73ea697a7dff.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-44b7a89e-88c9-445c-aa67-73ea697a7dff-root {
    text-align: center;
  }


#s-44b7a89e-88c9-445c-aa67-73ea697a7dff.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-44b7a89e-88c9-445c-aa67-73ea697a7dff-root {
    text-align: center;
  }


#s-44b7a89e-88c9-445c-aa67-73ea697a7dff.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-9656b42b-a0ac-4705-bc64-b9f90347a02d {
  max-width: 600px;
text-align: center;
}
@media (max-width: 767px){#s-9656b42b-a0ac-4705-bc64-b9f90347a02d {
  margin-top: 10px;
}
}
#s-9656b42b-a0ac-4705-bc64-b9f90347a02d {
  overflow: hidden;
  
  
      max-width: 600px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-9656b42b-a0ac-4705-bc64-b9f90347a02d .shogun-image-content {
  
    justify-content: center;
  
}

#s-37c2a633-8a6d-4304-ac3c-db605a171246 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(109, 109, 109, 1);
text-align: center;
text-decoration: none;
line-height: 1em;
background-image: none;
hover-type: color;
}
#s-37c2a633-8a6d-4304-ac3c-db605a171246:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-37c2a633-8a6d-4304-ac3c-db605a171246:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-37c2a633-8a6d-4304-ac3c-db605a171246 {
  margin-top: 20px;
}
}

  #s-37c2a633-8a6d-4304-ac3c-db605a171246-root {
    text-align: center;
  }


#s-37c2a633-8a6d-4304-ac3c-db605a171246.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-37c2a633-8a6d-4304-ac3c-db605a171246-root {
    text-align: center;
  }


#s-37c2a633-8a6d-4304-ac3c-db605a171246.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-37c2a633-8a6d-4304-ac3c-db605a171246-root {
    text-align: center;
  }


#s-37c2a633-8a6d-4304-ac3c-db605a171246.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-37c2a633-8a6d-4304-ac3c-db605a171246-root {
    text-align: center;
  }


#s-37c2a633-8a6d-4304-ac3c-db605a171246.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-37c2a633-8a6d-4304-ac3c-db605a171246-root {
    text-align: center;
  }


#s-37c2a633-8a6d-4304-ac3c-db605a171246.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Noto Sans JP;
  display:  inline-block ;
}
}
#s-e3c2dfd4-b8a6-4915-bcdf-f144fb57498f {
  text-align: center;
}

#s-e3c2dfd4-b8a6-4915-bcdf-f144fb57498f {
  overflow: hidden;
  
  
}







  #s-e3c2dfd4-b8a6-4915-bcdf-f144fb57498f img.shogun-image {
    

    
    
    
  }


#s-e3c2dfd4-b8a6-4915-bcdf-f144fb57498f .shogun-image-content {
  
    justify-content: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
