@charset "utf-8";

/* ==================================================
   MESSE 共通のヘッダ・ナビ・フッタ・分析contactエリア
================================================== */
/* reset */
html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}

/* setting */
html {
   height: 100%;
   font-size: 62.5%;
   scroll-behavior: smooth;
   background-color: #fff;
   scroll-padding-top: 80px;
}
body {
   position: relative;
   color: #464646;
   font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
   font-size: 1.4rem;
   font-weight: 400;
   word-wrap: break-word;
   overflow-wrap: break-word;
   -webkit-font-smoothing: antialiased;
}
label,button{cursor: pointer;}
strong{font-weight: bold;}
img{max-width: 100%;height: auto;}
table img{max-width: none;}
ul,ol{list-style: none;}

a:link,
a:visited {
   color: #4d4d4d;
   text-decoration: none;
}
a:hover {
   text-decoration: none;
}

@media all and (width >= 750px) {
   .spDisp { display: none; }
   html,body {
      width: auto;
      min-width: 1140px;
      overflow-x: auto;
   }
   html { scroll-padding-top: 170px; }
   body {
      overflow-x: visible;
      font-size: 1.6rem;
   }
}
@media screen and (width < 750px) {
   .pcDisp { display: none; }
}

/*--------------------------------------
	header
--------------------------------------*/
.siteHeader {
   position:sticky;
   top: 0;
   left: 0;
   z-index: 100;
   width: 100%;
   height: 68px;
   background-color: #fff;
}
.siteHeader:before {
   display: block;
   width: 100%;
   height: 3px;
   background: linear-gradient(to right, #ff0000 20px, #adadad 20px);
   content: '';
}

.siteHeader_body {
   display: flex;
   justify-content: space-between;
   padding: 17px 20px 0 17px;
}
.siteHeader_logo {
   display: block;
}
.siteHeader_logo svg {
   width: 140px;
   height: auto;
}
.siteHeader_rightblock {
   display: flex;
   justify-content: right;
}
.logoMesse {
   padding-top: 15px;
   font-size: 1.2rem;
   letter-spacing: 1px;
   color: #333;
   text-decoration: none;
}

@media screen and (width >= 750px), print {
   .siteHeader {
      height: 90px;
      border-bottom: 1px solid #d8d8d8;
   }
   .siteHeader:before {
      height: 5px;
      background: linear-gradient(to right, #ff0000 30px, #adadad 30px);
   }

   .siteHeader_body {
      max-width: 1040px;
      margin: 0 auto;
      padding: 21px 0 19px 30px;
   }
   .siteHeader_logo svg {
      width: 170px;
   }
   .logoMesse {
      padding-top: 23px;
      letter-spacing: 0.6px;
   }
}

/*--------------------------------------
	nav
--------------------------------------*/
@media screen and (min-width:750px) {
   nav {
      position: sticky;
      top: 90px;
      left: 0;
      width: 100%;
      height: 76px;
      background-color: #fff;
      border-bottom: 4px solid #bac6cb;
      z-index: 99;
      transition: all .15s;
   }
   nav .nav-inner {
      max-width: 1040px;
      margin: 0 auto;
   }
   nav .nav-inner .main-menu {
      display: flex;
      justify-content: center;
   }
   nav .nav-inner .main-menu > li {
      display: flex;
      height: 76px;
      font-size: 1.5rem;
      font-weight: 500;
      text-align: center;
      border-bottom: 0 solid #ff0000;
   }
   nav .nav-inner li.current {
      border-bottom: 4px solid #ff0000;
   }
   nav .nav-inner .main-menu>li:hover {
      border-bottom: 4px solid #ff0000;
      transition-property: all;
      transition-duration: 0.2s;
      transition-timing-function: linear;
   }
   nav .nav-inner .main-menu>li>a {
      display: flex;
      align-items: center;
      height: 76px;
      padding: 0 45px 4px 45px;
      color: #4d4d4d;
      opacity: 1;
      letter-spacing: .05em;
   }
   /* sub menu */
   .sub-menu {
      width: 100%;
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      padding: 30px 0;
      background-color: rgba(0, 0, 0, .8);
      visibility: hidden;
      opacity: 0;
      transition: .5s opacity;
      z-index: 10;
      display: flex;
      flex-wrap: wrap;
   }
   .nav_parent:hover .sub-menu {
      opacity: 1;
      visibility: visible;
   }
   .sub-menu-list {
      display: flex;
      flex-wrap: wrap;
      width: 900px;
      margin: 0 auto;
   }
   .sub-menu li {
      width: 50%;
      height: auto;
      line-height: normal;
      text-align: left;
   }
   .sub-menu li a {
      display: flex;
      align-items: center;
      padding: .5em 10px;
      font-size: 1.4rem;
      color: #fff;
      line-height: 1.4;
      transition: all .4s;
   }
   .sub-menu li a span {
      width: 8px;
      height: 8px;
      margin-right: 10px;
   }
   .sub-menu li a span::before {
      border: 0;
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      position: relative;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      border-right: solid 2px #dd0000;
      border-top: solid 2px #dd0000;
      transform: rotate(45deg);
      transition: all .4s;
   }
   .sub-menu li a:hover {
      opacity: 1;
      background-color: #dd0000;
      color: #fff;
   }
   .sub-menu li a:hover span::before {
      border-right-color: #fff;
      border-top-color: #fff;
   }
}
@media screen and (width < 750px) {
   nav {
      width: 100%;
      background: #fff;
      background-color: #fff;
      border-top: 1px solid #bac6cb;
   }
   nav .nav-inner>ul>li {
      width: 100%;
      border-bottom: 3px #bac6cb solid;
      font-size: 15px;
      text-align: center;
   }
   nav .nav-inner>ul>li a {
      position: relative;
      display: block;
      padding: 10px;
   }
   nav .nav-inner>ul>li:hover {
      border-bottom: 3px solid #ff0000;
      transition-property: all;
      transition-duration: 0.2s;
      transition-timing-function: linear;
   }
   nav .nav-inner>ul>li>a:link,
   nav .nav-inner>ul>li>a:visited {
      display: block;
      opacity: 1;
   }
   nav .nav-inner .current {
      border-bottom: 3px solid #ff0000;
   }
   nav .nav-inner .n-solution.current {
      padding: 0;
   }

   /* sub menu */
   .sub-menu {
      position: relative;
      width: 100%;
      color: #333;
      background-color: #fff;
      display: none;
      z-index: 10;
   }
   .sub-menu li {
      border-top: 1px solid #bac6cb;
   }
   .sub-menu li a {
      font-size: 13px;
      font-weight: 500;
   }

   .sub-switch {
      position: absolute;
      top: 0;
      right: 10px;
      bottom: 0;
      margin-top: auto;
      margin-bottom: auto;
      z-index: 10;
   }
   .sub-switch {
      width: 16px;
      height: 16px;
   }
   .sub-switch span {
      top: 4px;
      left: 4px;
      width: 8px;
      height: 2px;
   }
   .sub-switch span:nth-of-type(1),
   .sub-switch span:nth-of-type(2) {
      top: 7px;
   }
   .sub-switch,
   .sub-switch span {
      display: inline-block;
      transition: all .4s;
   }
   .sub-switch span {
      position: absolute;
      background: #444;
   }
   .sub-switch span:nth-of-type(1) {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
   }
   .sub-switch span:nth-of-type(2) {
      transform: rotate(90deg);
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
   }

   .nav_parent.active .sub-switch span:nth-of-type(2) {
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
   }

   .nav_parent.active .sub-switch span:nth-of-type(1) {
      display: none;
   }
}

/*--------------------------------------
	an contactShimadzu
--------------------------------------*/
/* Icons */
@font-face {
   font-family: "icons";
   src: url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.eot");
   src: url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.eot?#iefix") format("eot"), url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.woff2") format("woff2"), url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.woff") format("woff"), url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.ttf") format("truetype"), url("https://www.shimadzu.com/an/themes/custom/shimadzu_an/fonts/icons.svg#icons") format("svg");
}

[class*=" icon-"],
[class^=icon-] {
   font-family: "icons";
   font-style: normal;
   font-weight: 400;
   font-variant: normal;
   text-transform: none;
   line-height: 1;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   display: inline-block;
}
.icon-sh-arrowRight:before {
   content: "\E007";
}
.icon-sh-arrowTop:before {
   content: "\E009";
}
.icon-sh-contact:before {
   content: "\E010";
}

.p-followButton__icon--contact {
   -webkit-transition: 0.25s;
   transition: 0.25s;
   position: fixed;
   bottom: 12px;
   left: 12px;
   right: auto;
   z-index: 50;
   cursor: pointer;
   width: 52px;
   height: 52px;
   border-radius: 50%;
   font-size: 25px;
   border: 1px currentColor solid;
   color: #dd0000;
   background-color: #fff;
}

.p-followButton__icon--contact:hover {
   color: #fff;
   background-color: #dd0000;
   border-color: #dd0000;
}
.p-followButton__icon--contact>a {
   position: relative;
   display: inline-block;
   width: 100%;
   height: 100%;
   color: currentColor;
}
.p-followButton__icon--contact>a>i {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   font-size: 2.9rem;
}

.p-followButton__icon--heartOpen {
   -webkit-transition: 0.25s;
   transition: 0.25s;
   position: fixed;
   bottom: 12px;
   left: 74px;
   z-index: 50;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   font-size: 25px;
   border: 1px currentColor solid;
   color: #6e6e6e;
   background-color: #fff;
}
.p-followButton__icon--heartOpen:hover {
   color: #dd0000;
}
.p-followButton__icon--heartOpen>a {
   display: inline-block;
   width: 100%;
   height: 100%;
   color: currentColor;
}
.p-followButton__icon--heartOpen>a>i {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   font-size: 2rem;
}
.p-followButton__icon--heartOpen>button {
   display: inline-block;
   width: 100%;
   height: 100%;
   color: currentColor;
   border: none;
   outline: none;
   background: transparent;
}
.p-followButton__icon--heartOpen>button>i {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   font-size: 2rem;
}

.p-followButton__icon--arrowTop {
   -webkit-transition: 0.25s;
   transition: 0.25s;
   display: none;
   position: fixed;
   z-index: 50;
   width: 52px;
   height: 52px;
   border-radius: 50%;
   font-size: 25px;
   border: 1px currentColor solid;
   color: #6e6e6e;
   background-color: #fff;
   bottom: 12px;
   right: 12px;
}
.p-followButton__icon--arrowTop:hover {
   border-color: #6e6e6e;
   color: #fff;
   background-color: #6e6e6e;
}
.p-followButton__icon--arrowTop>a {
   position: relative;
   display: inline-block;
   width: 100%;
   height: 100%;
   color: currentColor;
}
.p-followButton__icon--arrowTop>a>i {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   font-size: 1.2rem;
}

@media screen and (width >= 750px), print {
   .p-followButton__icon--contact {
      bottom: 25px;
      left: auto;
      right: 95px;
      width: 60px;
      height: 60px;
   }
   .p-followButton__icon--arrowTop:hover::before,
   .p-followButton__icon--contact:hover::before {
      color: #fff;
      background-color: #000;
      font-size: 1.4rem;
      position: absolute;
      top: -30px;
      padding: 2px 8px;
   }
   .p-followButton__icon--contact:hover::before {
      content: 'Contact SHIMADZU';
      min-width: 144px;
      left: -40px;
   }
   .p-followButton__icon--contact>a>i {
      font-size: 3.2rem;
   }

   .p-followButton__icon--heartOpen {
      display: none;
   }

   .p-followButton__icon--arrowTop {
      bottom: 25px;
      right: 25px;
      width: 60px;
      height: 60px;
   }
   .p-followButton__icon--arrowTop:hover::before {
      content: 'Page top';
      min-width: 75px;
      left: -8px;
   }
}
/* contactShimadzu */
.c-shimadzu {
   margin-top: 50px;
   padding-top: 30px;
   border-top: 1px solid #e6e6e6;
}
.c-shimadzu .c-shimadzu-icon {
   text-align: center;
   font-size: 45px;
   line-height: 1;
   height: 45px;
   color: #999999;
}

.c-shimadzu h4 {
   padding: 10px 0 20px;
   font-size: 2rem;
   line-height: 1;
   text-align: center;
}

.c-shimadzu li a {
   color: #dd0000;
   padding: 20px 20px 20px 12px;
   border: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: #fff;
   font-size: 14px;
   text-decoration: none;
}
.c-shimadzu li a:hover {
   background-color: #dd0000;
   color: #fff;
   opacity: 1;
}

.c-shimadzu-caution {
   max-width: 1040px;
   margin: 0 auto;
   padding: 20px 12px;
}

.c-shimadzu-caution p {
   color: #6e6e6e;
   font-size: 13px;
}

@media screen and (width >= 750px) {
   .c-shimadzu {
      padding-top: 50px;
      padding-bottom: 50px;
   }
   .c-shimadzu h4 {
      font-size: 3.2rem;
   }

   .c-shimadzu ul {
      display: flex;
      justify-content: center;
   }

   .c-shimadzu li + li {
      margin-left: 20px;
   }
   .c-shimadzu li a {
      cursor: pointer;
      min-width: 230px;
      min-height: 50px;
      padding: 5px 35px;
      border-radius: 999px;
      border: 1px solid #dd0000;
      justify-content: center;
   }
   .c-shimadzu li a i {
      display: none;
   }

   .c-shimadzu-caution {
      padding: 25px 0 0 0;
   }
}

@media screen and (max-width: 749px) {
   .c-shimadzu li {
      border-top: 1px solid #e6e6e6;
   }
   .c-shimadzu li:last-child {
      border-bottom: 1px solid #e6e6e6;
   }
}

/*--------------------------------------
	footer
--------------------------------------*/
footer {
   border-top-color: #adadad;
   border-top-width: 3px;
   border-top-style: solid;
   position: relative;
   letter-spacing: 0;
}
footer::before {
   left: 0px;
   top: -3px;
   width: 20px;
   height: 3px;
   display: block;
   position: absolute;
   content: "";
   background-color: #ff0000;
}

footer .container .links {
   background-color: #ebebeb;
}
footer .container .links li {
   text-transform: uppercase;
   line-height: 1;
   font-size: 1.2rem;
   border-bottom-color: #b3b2b2;
   border-bottom-width: 1px;
   border-bottom-style: solid;
}
footer .container .links li a {
   padding: 25px 0px;
   text-align: center;
   text-decoration: none;
   display: block;
   position: relative;
}

footer .container .links li a::before {
   color: #ff0000;
   top: 50%;
   font-size: 12px;
   right: 20px;
   margin-top: -5px;
   display: inline-block;
   position: absolute;
   border: 0;
   content: "";
   border-right: solid 1px #dd0000;
   border-top: solid 1px #dd0000;
   transform: rotate(45deg);
   height: 8px;
   width: 8px;
}

footer .container .copyright {
   margin: 20px 0px 23px;
   text-align: center;
   line-height: 1;
   letter-spacing: 0px;
   font-size: 1rem;
   padding-bottom: 0;
}

footer .container .copyright img {
   width: 280px;
   height: 11px;
}

@media all and (width >= 750px) {
   footer {
      padding: 9px 0px 11px;
      margin-top: 0;
      border-top-color: #999999;
      border-top-width: 5px;
      border-top-style: solid;
      background-color: #ebebeb;
   }
   footer::before {
      top: -5px;
      width: 30px;
      height: 5px;
   }

   footer .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      width: 1040px;
      margin-right: auto;
      margin-left: auto;
   }

   footer .container .links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background-color: transparent;
   }
   footer .container .links li {
      border: currentColor;
      -o-border-image: none;
      border-image: none;
      line-height: 1;
      letter-spacing: 0px;
      font-size: 1.3rem;
      margin-right: 1em;
   }
   footer .container .links li::before {
      margin-right: 1em;
      vertical-align: 1px;
      content: "|";
   }
   footer .container .links li:last-child::after {
      margin-left: 1em;
      vertical-align: 1px;
      content: "|";
   }
   footer .container .links li a {
      padding: 0px;
      text-align: left;
      color: #005a99;
      display: inline;
   }
   footer .container .links li a::before {
      display: none;
   }
   footer .container .links li a:hover {
      text-decoration: underline;
   }

   footer .container .copyright {
      margin: 0px 0px 0px auto;
      line-height: 1;
      font-size: 1.2rem;
   }

   footer .container .copyright img {
      width: 383px;
      height: 13px;
   }
}


@media screen and (min-width:750px) {

   /* --------------------------------------------------
		parts
-------------------------------------------------- */
   /*	スペース
-------------------------------------------------- */
   .mt0 {
      margin-top: 0 !important;
   }

   .mt05 {
      margin-top: 5px !important;
   }

   .mt10 {
      margin-top: 10px !important;
   }

   .mt15 {
      margin-top: 15px !important;
   }

   .mt20 {
      margin-top: 20px !important;
   }

   .mt25 {
      margin-top: 25px !important;
   }

   .mt30 {
      margin-top: 30px !important;
   }

   .mt35 {
      margin-top: 35px !important;
   }

   .mt40 {
      margin-top: 40px !important;
   }

   .mt45 {
      margin-top: 45px !important;
   }

   .mt50 {
      margin-top: 50px !important;
   }

   .mt55 {
      margin-top: 55px !important;
   }

   .mt60 {
      margin-top: 60px !important;
   }

   .mt65 {
      margin-top: 65px !important;
   }

   .mt70 {
      margin-top: 70px !important;
   }

   .mt75 {
      margin-top: 75px !important;
   }

   .mt80 {
      margin-top: 80px !important;
   }

   .pb0 {
      padding-bottom: 0 !important;
   }

   .pb05 {
      padding-bottom: 5px !important;
   }

   .pb10 {
      padding-bottom: 10px !important;
   }

   .pb15 {
      padding-bottom: 15px !important;
   }

   .pb20 {
      padding-bottom: 20px !important;
   }

   .pb25 {
      padding-bottom: 25px !important;
   }

   .pb30 {
      padding-bottom: 30px !important;
   }

   .pb35 {
      padding-bottom: 35px !important;
   }

   .pb40 {
      padding-bottom: 40px !important;
   }

   .pb45 {
      padding-bottom: 45px !important;
   }

   .pb50 {
      padding-bottom: 50px !important;
   }

   .pb55 {
      padding-bottom: 55px !important;
   }

   .pb60 {
      padding-bottom: 60px !important;
   }

   .pb65 {
      padding-bottom: 65px !important;
   }

   .pb70 {
      padding-bottom: 70px !important;
   }

   .pb75 {
      padding-bottom: 75px !important;
   }

   .pb80 {
      padding-bottom: 80px !important;
   }
}

@media screen and (width < 750px) {
   /*	スペース
-------------------------------------------------- */
   .spmt0 {
      margin-top: 0 !important;
   }

   .spmt05 {
      margin-top: 5px !important;
   }

   .spmt10 {
      margin-top: 10px !important;
   }

   .spmt15 {
      margin-top: 15px !important;
   }

   .spmt20 {
      margin-top: 20px !important;
   }

   .spmt25 {
      margin-top: 25px !important;
   }

   .spmt30 {
      margin-top: 30px !important;
   }

   .spmt35 {
      margin-top: 35px !important;
   }

   .spmt40 {
      margin-top: 40px !important;
   }

   .spmt45 {
      margin-top: 45px !important;
   }

   .spmt50 {
      margin-top: 50px !important;
   }

   .spmt55 {
      margin-top: 55px !important;
   }

   .spmt60 {
      margin-top: 60px !important;
   }

   .spmt65 {
      margin-top: 65px !important;
   }

   .spmt70 {
      margin-top: 70px !important;
   }

   .spmt75 {
      margin-top: 75px !important;
   }

   .spmt80 {
      margin-top: 80px !important;
   }

   .sppb0 {
      padding-bottom: 5px !important;
   }

   .sppb05 {
      padding-bottom: 5px !important;
   }

   .sppb10 {
      padding-bottom: 10px !important;
   }

   .sppb15 {
      padding-bottom: 15px !important;
   }

   .sppb20 {
      padding-bottom: 20px !important;
   }

   .sppb25 {
      padding-bottom: 25px !important;
   }

   .sppb30 {
      padding-bottom: 30px !important;
   }

   .sppb35 {
      padding-bottom: 35px !important;
   }

   .sppb40 {
      padding-bottom: 40px !important;
   }

   .sppb45 {
      padding-bottom: 45px !important;
   }

   .sppb50 {
      padding-bottom: 50px !important;
   }

   .sppb55 {
      padding-bottom: 55px !important;
   }

   .sppb60 {
      padding-bottom: 60px !important;
   }

   .sppb65 {
      padding-bottom: 65px !important;
   }

   .sppb70 {
      padding-bottom: 70px !important;
   }

   .sppb75 {
      padding-bottom: 75px !important;
   }

   .sppb80 {
      padding-bottom: 80px !important;
   }
}


