@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 47.5%;
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #000;
  margin: 0px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  font-size: 1.8rem;
}

h1 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h2 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h3 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h4 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h5 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

img {
  border: 0px;
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

dl {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: center;
  background: #fff;
}
@media (min-width: 768px) {
  #header {
    height: 60px;
  }
}
@media (min-width: 1200px) {
  #header {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 100px;
  }
}
#header #logo {
  display: block;
  margin-left: 10px;
  width: 210px;
  transition: all 600ms 0s ease;
}
@media (min-width: 768px) {
  #header #logo {
    width: 260px;
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 310px;
    margin-left: 15px;
  }
}
@media (min-width: 1400px) {
  #header #logo {
    width: 420px;
  }
}
#header .headerRight {
  display: none;
}
@media (min-width: 1200px) {
  #header .headerRight {
    display: flex;
  }
}
#header #mainNavi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 16px;
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  padding: 0px 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    padding: 0px 1.2rem;
  }
}
#header #mainNavi > li > a:after {
  width: 0%;
  content: "";
  display: block;
  background: #27b0fc;
  height: 1px;
  transition: all 600ms 0s ease;
}
#header #mainNavi li.active a:after,
#header #mainNavi li a:hover:after {
  width: 100%;
}
#header #headerTel a {
  text-decoration: none;
}
#header #headerTel span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 4.2rem;
  transition: all 600ms 0s ease;
}
@media (min-width: 1600px) {
  #header #headerTel span {
    font-size: 5rem;
  }
}
#header #headerTel span img {
  margin-right: 16px;
  width: 40px;
  transition: all 600ms 0s ease;
}
@media (min-width: 1600px) {
  #header #headerTel span img {
    width: 50px;
  }
}
#header.on {
  height: 50px;
}
@media (min-width: 1400px) {
  #header.on {
    height: 60px;
  }
}
#header.on #logo {
  width: 210px;
}
#header.on #mainNavi #contactButton a {
  height: 40px;
}
@media (min-width: 1400px) {
  #header.on #mainNavi #contactButton a {
    height: 50px;
  }
}
#header.on #mainNavi #contactButton a img {
  width: 21px;
  height: auto;
}
#header.on #headerTel {
  font-size: 4.2rem;
}
#header.on #headerTel img {
  width: 40px;
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 60px 15px 15px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -320px;
    width: 320px;
  }
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 280px;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
  margin-bottom: 5px;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  line-height: 1.2;
  display: flex;
  padding: 1.4rem 0px;
  position: relative;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: dashed 1px #5f5f5f;
  font-weight: 500;
}
#sidebar .list-sidenav > li > a:after {
  content: url(../images/icon_arrow.svg);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  border-bottom: solid 1px #08abdd;
  color: #08abdd;
}
#sidebar .list-sidenav > li.active > a:after,
#sidebar .list-sidenav > li > a:hover:after {
  filter: invert(53%) sepia(30%) saturate(4626%) hue-rotate(160deg) brightness(98%) contrast(94%);
}
#sidebar .list-sidenav > li.active > a:after {
  filter: invert(53%) sepia(30%) saturate(4626%) hue-rotate(160deg) brightness(98%) contrast(94%);
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #b4b4b4;
}
#sidebar .submenu li a {
  padding: 1rem;
  font-size: 1.3rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#sidebar .submenu li a:hover {
  color: #005145;
}

.sidebar-bnr {
  text-align: center;
}
.sidebar-bnr img {
  width: 80%;
  margin: 0px auto;
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

#sidebarContact {
  width: 100%;
  background: #3099ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 15px;
  font-size: 2rem;
  font-weight: 500;
}
#sidebarContact img {
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
  width: 19px;
  height: auto;
}

#sidebarTel span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  #sidebarTel span {
    font-size: 3.2rem;
  }
}
#sidebarTel span img {
  width: 3rem;
  margin-right: 1.2rem;
}

/* -------------------------------
        オーバーレイ
    -------------------------------- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* -------------------------------
        HambergerMenu
    -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
  transition: all 600ms 0s ease;
}
@media (min-width: 768px) {
  .menuWrapper {
    right: 10px;
    top: 10px;
  }
}
@media (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
.menuWrapper.on {
  right: 5px;
  top: 5px;
}

#menuButton {
  background: #333;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 7px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  color: #fff;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

body.side-open #menuButton {
  display: block;
}

/* アニメーション */
#menuButton {
  margin-right: 120px;
}
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #1a335b;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  padding: 90px 0px 90px;
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px;
  }
}
#footer #footerBody #f-logo {
  width: 80vw;
  text-align: center;
  font-size: 4vw;
}
@media (min-width: 768px) {
  #footer #footerBody #f-logo {
    max-width: 430px;
    width: 100%;
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  #footer #footerBody #f-logo {
    text-align: left;
  }
}
#footer #footerBody .footerLeft {
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerRight #textLink {
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #footer #footerBody .footerRight #textLink {
    display: flex;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  #footer #footerBody .footerRight #textLink {
    font-size: 1.6rem;
  }
}
#footer #footerBody .footerRight #textLink li {
  margin: 0px 0px 0px 1rem;
}
@media (min-width: 1400px) {
  #footer #footerBody .footerRight #textLink li {
    margin: 0px 0px 0px 2rem;
  }
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual-Wrap {
  position: relative;
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 768px) {
  #mainVisual-Wrap {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  #mainVisual-Wrap {
    margin-top: 80px;
  }
}
@media (min-width: 1400px) {
  #mainVisual-Wrap {
    margin-top: 100px;
  }
}
#mainVisual-Wrap #catch {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90vw;
  max-width: 1332px;
}

#mainVisual {
  width: 100%;
  line-height: 1;
  aspect-ratio: 774/870;
  background: #fff url(../images/main01-sp.jpg) no-repeat center/auto 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #mainVisual {
    aspect-ratio: 1200/870;
    background: url(../images/main01-pad.jpg) no-repeat center/auto 100%;
  }
}
@media (min-width: 1200px) {
  #mainVisual {
    aspect-ratio: 2000/870;
    background: url(../images/main01.jpg) no-repeat center/auto 100%;
  }
}
#mainVisual a path {
  opacity: 0;
}
#mainVisual a:hover path {
  fill: #fff;
  opacity: 0.2;
}
#mainVisual #mainvisual-Link {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
}

/* スクロールダウンの位置 */
.scroll_down {
  position: absolute;
  bottom: 20vw;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
  z-index: 10;
  transform-origin: right bottom;
  transform: scale(0.75);
}
@media (min-width: 768px) {
  .scroll_down {
    bottom: 45px;
  }
}
@media (min-width: 1400px) {
  .scroll_down {
    transform: scale(1);
  }
}
.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.scroll_down a .arrow {
  position: absolute;
  width: 28px;
  height: 3px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 6s ease-out infinite;
}
.scroll_down a .arrow:first-child {
  animation: move 6s ease-out 2s infinite;
}
.scroll_down a .arrow:nth-child(2) {
  animation: move 6s ease-out 4s infinite;
}
.scroll_down a .arrow:before, .scroll_down a .arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.scroll_down a .arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.scroll_down a .arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
.scroll_down a .text {
  display: block;
  margin-top: 60px;
  margin-left: -14px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.company-Wrap {
  padding: 15vw 25px 0px;
  background: url(../images/bg_company-top.jpg.jpg) no-repeat top center/contain, url(../images/bg_company1-body.jpg.jpg) repeat-y top center/contain;
}

.maps-Wrap {
  padding: 100px 25px 0px;
  background: #f4f4f4 url(../images/bg_maps.jpg) no-repeat left top/90px auto;
}
@media (min-width: 992px) {
  .maps-Wrap {
    background: #f4f4f4 url(../images/bg_maps.jpg) no-repeat left top/175px auto;
  }
}

.bannerCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  aspect-ratio: 952/535;
  padding: 0px 30px 0px 20px;
  width: 100%;
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1400px) {
  .bannerCont {
    padding: 0px 60px 0px 40px;
  }
}
.bannerCont p {
  font-weight: 700;
  font-size: 4.8rem;
}
.bannerCont p span {
  color: #e90013;
}
@media (min-width: 768px) {
  .bannerCont p {
    font-size: 4.6rem;
  }
}
@media (min-width: 992px) {
  .bannerCont p {
    font-size: 4.8rem;
  }
}
@media (min-width: 1400px) {
  .bannerCont p {
    font-size: 5.6rem;
  }
}
.bannerCont.recruit {
  background: url(../images/bg_recruit.jpg) no-repeat center/auto 100%;
  border-right: solid 1px #fff;
}
.bannerCont.recruit:hover {
  background: url(../images/bg_recruit-hover.jpg) no-repeat center/auto 100%;
  color: #fff;
}
.bannerCont.contact {
  background: url(../images/bg_contact.jpg) no-repeat center/auto 100%;
}
.bannerCont.contact:hover {
  background: url(../images/bg_contact-hover.jpg) no-repeat center/auto 100%;
  color: #fff;
}

.dotDL {
  max-width: inherit;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .dotDL {
    max-width: 430px;
  }
}
.dotDL dt {
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 400;
}
.dotDL dt:before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background: #01aeeb;
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.dotDL dd {
  text-align: right;
}

/*-------------------------------------------------------------------------------------------*
 *
 * construction.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual-Wrap2 {
  position: relative;
  width: 100%;
  margin-top: 50px;
  aspect-ratio: 774/870;
  background: url(../images/main02-sp.jpg) no-repeat center/auto 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  #mainVisual-Wrap2 {
    margin-top: 60px;
    aspect-ratio: 1200/870;
    background: url(../images/main02-pad.jpg) no-repeat center/auto 100%;
  }
}
@media (min-width: 1200px) {
  #mainVisual-Wrap2 {
    margin-top: 80px;
    aspect-ratio: 2000/870;
    background: url(../images/main02.jpg) no-repeat center/auto 100%;
  }
}
@media (min-width: 1400px) {
  #mainVisual-Wrap2 {
    margin-top: 100px;
  }
}
#mainVisual-Wrap2 #catch {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 90vw;
  max-width: 1332px;
}

.bg_skygradation-Wrap {
  padding: 60px 0px 60px;
  background: #f6fcff url(../images/bg_blue.jpg) no-repeat top center;
}
@media (min-width: 992px) {
  .bg_skygradation-Wrap {
    padding: 140px 0px 140px;
  }
}

.bg_blueLine {
  width: 100%;
  background: url(../images/bg_blue-line.gif) no-repeat center/180% auto;
  padding: 0px 15px;
}
@media (min-width: 768px) {
  .bg_blueLine {
    background: url(../images/bg_blue-line.gif) no-repeat center/150% auto;
  }
}
@media (min-width: 1200px) {
  .bg_blueLine {
    background: url(../images/bg_blue-line.gif) no-repeat center;
  }
}

.textBox {
  background: #fff;
  padding: 25px;
  position: relative;
}
@media (min-width: 992px) {
  .textBox {
    padding: 50px;
  }
}
.textBox p {
  position: relative;
  z-index: 2;
}
.textBox:after {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24rem;
  font-style: italic;
  position: absolute;
  right: 0;
  bottom: -0.14em;
  color: #ecf7fd;
  line-height: 1;
  z-index: 1;
}

.bg_service02-01 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p02-01.jpg) no-repeat top left 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service02-01 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 1400px) {
  .bg_service02-01 {
    background: url(../images/bg_p02-01.jpg) no-repeat center/auto 100%;
  }
}
.bg_service02-01 .textBox:after {
  content: "01";
}

.bg_service02-02 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p02-02.jpg) no-repeat top right 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service02-02 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 1400px) {
  .bg_service02-02 {
    background: url(../images/bg_p02-02.jpg) no-repeat center/auto 100%;
  }
}
.bg_service02-02 .textBox:after {
  content: "02";
}

.bg_service02-03 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p02-03.jpg) no-repeat top left 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service02-03 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 992px) {
  .bg_service02-03 {
    background: url(../images/bg_p02-03.jpg) no-repeat top left 70%/auto 100%;
  }
}
@media (min-width: 1400px) {
  .bg_service02-03 {
    background: url(../images/bg_p02-03.jpg) no-repeat center/auto 100%;
  }
}
.bg_service02-03 .textBox:after {
  content: "03";
}

.bg_service02-04 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p02-04.jpg) no-repeat top right 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service02-04 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 992px) {
  .bg_service02-04 {
    background: url(../images/bg_p02-04.jpg) no-repeat top right 70%/auto 100%;
  }
}
@media (min-width: 1400px) {
  .bg_service02-04 {
    background: url(../images/bg_p02-04.jpg) no-repeat center/auto 100%;
  }
}
.bg_service02-04 .textBox:after {
  content: "04";
}

/*-------------------------------------------------------------------------------------------*
 *
 * transportation.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual-Wrap3 {
  position: relative;
  width: 100%;
  margin-top: 50px;
  aspect-ratio: 774/870;
  background: url(../images/main03-sp.jpg) no-repeat center/cover;
  overflow: hidden;
}
@media (min-width: 768px) {
  #mainVisual-Wrap3 {
    margin-top: 60px;
    aspect-ratio: 1200/870;
    background: url(../images/main03-pad.jpg) no-repeat center/cover;
  }
}
@media (min-width: 1200px) {
  #mainVisual-Wrap3 {
    margin-top: 80px;
    aspect-ratio: 2000/870;
    background: url(../images/main03.jpg) no-repeat center/cover;
  }
}
@media (min-width: 1400px) {
  #mainVisual-Wrap3 {
    margin-top: 100px;
  }
}
#mainVisual-Wrap3 #catch {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 90vw;
  max-width: 1332px;
}

.bg_graygradation-Wrap {
  padding: 60px 0px 60px;
  background: #f6fcff url(../images/bg_gray.jpg) no-repeat top center;
}
@media (min-width: 992px) {
  .bg_graygradation-Wrap {
    padding: 140px 0px 140px;
  }
}

.bg_grayLine {
  width: 100%;
  background: url(../images/bg_gray-line.gif) no-repeat center/180% auto;
}
@media (min-width: 768px) {
  .bg_grayLine {
    background: url(../images/bg_gray-line.gif) no-repeat center/150% auto;
  }
}
@media (min-width: 1200px) {
  .bg_grayLine {
    background: url(../images/bg_gray-line.gif) no-repeat center;
  }
}

.bg_service03-01 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p03-01.jpg) no-repeat top left 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service03-01 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 1400px) {
  .bg_service03-01 {
    background: url(../images/bg_p03-01.jpg) no-repeat center/auto 100%;
  }
}
.bg_service03-01 .textBox:after {
  content: "01";
}

.bg_service03-02 {
  width: 100%;
  padding: 55px 0px 75px;
  background: url(../images/bg_p03-02.jpg) no-repeat top left 65%/auto 100%;
}
@media (min-width: 992px) {
  .bg_service03-02 {
    padding: 110px 0px 150px;
  }
}
@media (min-width: 1400px) {
  .bg_service03-02 {
    background: url(../images/bg_p03-02.jpg) no-repeat center/auto 100%;
  }
}
.bg_service03-02 .textBox:after {
  content: "02";
}

.bg_vehicle-Wrap {
  padding: 60px 0px 60px;
  background: url(../images/bg_h3title.jpg) no-repeat top center, url(../images/bg_lattice.gif) repeat center;
  background-size: auto calc(40vw + 60px), auto;
}
@media (min-width: 768px) {
  .bg_vehicle-Wrap {
    background-size: auto 260px, auto;
  }
}
@media (min-width: 992px) {
  .bg_vehicle-Wrap {
    padding: 140px 0px 90px;
    background-size: auto 500px, auto;
  }
}

.modal-title {
  display: flex;
  align-items: center;
  font-size: 2.4rem !important;
  color: #1a3365;
  font-weight: bold;
}
.modal-title:before {
  content: "";
  display: block;
  aspect-ratio: 31/35;
  margin-right: 0.8rem;
  background: url(../images/icon_hexagon-red.png) no-repeat center/contain;
  width: 18px;
}

.modal-body {
  padding: 15px !important;
  aspect-ratio: 4/3;
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.recruitHR {
  display: block;
  width: 100%;
  height: 280px;
  background: url(../images/bg_p04-01.jpg) no-repeat center/auto 100%;
}
@media (min-width: 992px) {
  .recruitHR {
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .recruitHR {
    height: 480px;
  }
}

.tabBtn {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0px 15px;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  background: #01aeeb;
  color: #fff;
}
.tabBtn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabBtn:after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background: url(../images/icon_double_arrow_down.svg) no-repeat center/cover;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.tabBtn:hover {
  color: #01aeeb;
  background: #fff;
  border: solid 1px #01aeeb;
}
.tabBtn:hover:after {
  filter: invert(43%) sepia(71%) saturate(1504%) hue-rotate(164deg) brightness(103%) contrast(99%);
}

.blue-Wrap {
  padding: 90px 25px 0px;
  background: url(../images/bg_blue-top.jpg.jpg) no-repeat top center/contain, url(../images/bg_blue-body.jpg.jpg) repeat-y top center/contain;
}

.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: #01aeeb;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
  color: #fff;
}
.contactBox dd {
  background: #01aeeb;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 0px;
}
.contactBox dd .num {
  font-size: 3.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.contactBox dd .time {
  font-size: 1.8rem;
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
}
.mailfoamTable th .required {
  margin-left: 0.5em;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
textarea {
  width: 100%;
}

.form25 {
  width: 80%;
  display: inline-block;
}

.form50 {
  width: 100%;
  display: inline-block;
}

@media (min-width: 767px) {
  .form25 {
    width: 25%;
  }
  .form50 {
    width: 50%;
  }
}
.need {
  color: #d40000;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #e8342f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  height: 56px;
  background: #000;
  color: #fff;
  position: relative;
  font-size: 3vw;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #666;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow-left.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 0.5em;
  filter: brightness(0) invert(1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  margin-right: 0.5em;
}

button.formBtn {
  border: none;
  outline: none;
}
button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 250px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 14px;
  line-height: normal;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 8px;
  box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  word-wrap: break-word;
}
.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}
.privacyBox p {
  margin-bottom: 1em;
}
.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}
.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}
.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .privacyBox ul {
    margin-bottom: 1em;
    margin-left: 20px;
  }
}
.ttl_policy {
  font-size: 120%;
  font-weight: bold;
}

.out-line {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html 
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * works.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.googleMap1 {
  width: 100%;
  height: 320px;
  border: solid 1px #fff !important;
}
@media (min-width: 992px) {
  .googleMap1 {
    height: 535px;
  }
}

.googleMap2 {
  width: 100%;
  height: 320px;
  border: solid 1px #fff !important;
}
@media (min-width: 992px) {
  .googleMap2 {
    height: 390px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  height: 300px;
  margin-top: 50px;
  width: 100%;
}
@media (min-width: 768px) {
  #h2Title {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  #h2Title {
    height: 420px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
    margin-top: 80px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 520px;
    margin-top: 100px;
  }
}
#h2Title.p04 {
  background: url(../images/h2_decoration.png) no-repeat left center/auto 100%, url(../images/bg_h2title04.jpg) no-repeat center/auto 100%;
}
#h2Title.p05 {
  background: url(../images/h2_decoration.png) no-repeat left center/auto 100%, url(../images/bg_h2title05.jpg) no-repeat center/auto 100%;
}
#h2Title h2 {
  width: 100%;
  height: 100%;
  position: relative;
}
#h2Title h2 .ja {
  position: absolute;
  top: 30px;
  left: 15px;
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  #h2Title h2 .ja {
    font-size: 8rem;
    left: 30px;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .ja {
    top: 50px;
    left: 50px;
  }
}
#h2Title h2 .ja:before {
  aspect-ratio: 31/35;
  width: 24px;
  content: "";
  display: inline-block;
  background: url(../images/icon_hexagon-red.png) no-repeat center/contain;
  margin-right: 1.8rem;
  vertical-align: middle;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  #h2Title h2 .ja:before {
    width: 31px;
    margin-right: 2.4rem;
  }
}
#h2Title h2 .en {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 85vw;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    width: 60vw;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    width: 45vw;
  }
}

.title {
  display: flex;
  align-items: center;
  font-size: 4.2rem;
  font-weight: 700;
}
.title:before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: #01aeeb;
  background: linear-gradient(90deg, rgb(1, 174, 235) 0%, rgb(1, 174, 235) 50%, rgb(233, 0, 19) 50%, rgb(233, 0, 19) 100%);
  margin-right: 16px;
}
.title.center {
  align-items: center;
}
.title.white {
  color: #fff;
}

.title2 {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a335b;
}
.title2 .label {
  background: #ffffff;
  color: #01aeeb;
  display: block;
  text-align: center;
  width: 68px;
  height: 22px;
  line-height: 22px;
  margin-right: 14px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
.title2.center {
  align-items: center;
}
.title2.white {
  color: #fff;
}

.title3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  font-weight: 700;
  position: relative;
  line-height: 1;
  height: 21vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .title3 {
    height: 140px;
  }
}
@media (min-width: 992px) {
  .title3 {
    height: 170px;
  }
}
.title3:before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: #01aeeb;
  background: linear-gradient(90deg, rgb(1, 174, 235) 0%, rgb(1, 174, 235) 50%, rgb(233, 0, 19) 50%, rgb(233, 0, 19) 100%);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.title3 .ja {
  font-size: 4.2rem;
  position: relative;
  z-index: 3;
  text-align: center;
}
.title3 .ja.white {
  color: #fff;
}
.title3 .en {
  font-family: "Roboto", sans-serif;
  font-size: 26vw;
  font-style: italic;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eef8fd;
  z-index: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .title3 .en {
    font-size: 24rem;
  }
}
.title3 .en.blue {
  color: #eef8fd;
}
.title3 .en.gray {
  color: #e6e7e8;
}
.title3 .en.white {
  color: rgba(255, 255, 255, 0.15);
}

.subTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subTitle .num {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.05em;
  font-size: 1.6rem;
  padding: 0px 8px;
  line-height: 22px;
  height: 22px;
  margin-bottom: 1rem;
}
.subTitle .num.blue {
  border: solid 1px #01aeeb;
  color: #01aeeb;
}
.subTitle .num.black {
  background: #000;
  color: #fff;
}
.subTitle .ja {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a335b;
}

.subTitle2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a335b;
}
.subTitle2:before {
  aspect-ratio: 31/35;
  width: 18px;
  content: "";
  display: inline-block;
  background: url(../images/icon_hexagon-red.png) no-repeat center/contain;
  margin-right: 1.6rem;
  vertical-align: middle;
  margin-bottom: 0.6rem;
}

.read {
  font-size: 2rem;
  font-weight: 700;
}
.read:before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: #0a5cb8;
  margin-right: 8px;
  vertical-align: middle;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable5 {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #9b9b9b;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable5 {
    width: 100%;
    display: table;
    border-bottom: none;
  }
}
.responsiveTable5 tbody {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable5 tbody {
    display: table-row-group;
  }
}
.responsiveTable5 tr {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable5 tr {
    display: table-row;
  }
}
.responsiveTable5 tr:first-child th {
  border-top: solid 1px #01aeeb;
}
.responsiveTable5 tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable5 tr:first-child td {
    border-top: solid 1px #9b9b9b;
  }
}
.responsiveTable5 th {
  width: 100%;
  padding: 20px 0px 0px;
  font-weight: bold;
  border-top: solid 1px #01aeeb;
  line-height: 140%;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .responsiveTable5 th {
    padding: 20px;
    width: 20%;
    border-top: none;
    border-bottom: solid 1px #01aeeb;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
}
.responsiveTable5 td {
  width: 100%;
  padding: 7px 0px 25px;
  border-bottom: none;
  line-height: 140%;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable5 td {
    width: 80%;
    padding: 20px;
    border-top: none;
    border-bottom: solid 1px #9b9b9b;
    line-height: 140%;
    display: table-cell;
  }
}

.vehicleTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 5px;
  font-size: 1.6rem;
  display: table;
  line-height: 1;
  letter-spacing: 0;
}
.vehicleTable th {
  width: 80px;
  background: #000;
  color: #fff;
  padding: 9px 0px;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
  text-align: left;
  text-align: center;
}
.vehicleTable td {
  padding: 7px 15px;
  background: #fff;
  border: solid 1px #cccccc;
}

/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  background: #0c3388;
  color: #fff;
  font-weight: 700;
  width: 220px;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 0px 20px;
  text-decoration: none;
}
.detailBtn:after {
  content: "";
  width: 25px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn:hover {
  color: #fff;
  background: #1449bb;
}
.detailBtn:hover:after {
  transform: translate(4px, 0);
}

.mapBtn {
  display: inline-flex;
  border-bottom: solid 1px #01aeeb;
  width: 100%;
  max-width: 535px;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  text-decoration: none;
}
.mapBtn:hover {
  color: #1449bb;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.wrapper {
  width: 100%;
  padding: 0px 25px;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.objectfit-Img {
  width: 100%;
  height: 100%;
}
.objectfit-Img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.red {
  color: #c02b2b;
}

.pbb {
  page-break-before: always;
}

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-30 {
  font-size: 3rem;
}

.fs-32 {
  font-size: 3.2rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.fs32 {
  font-size: 2.8rem;
}

@media (min-width: 768px) {
  .fs32 {
    font-size: 3.2rem;
  }
}
.m-auto {
  margin: 0px auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-90 {
  margin-top: 90px;
}

.ml-00 {
  margin-left: 0px !important;
}

.mr-05 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

.mb20 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 15px !important;
}

.mb40 {
  margin-bottom: 20px !important;
}

.mb50 {
  margin-bottom: 25px !important;
}

.mb60 {
  margin-bottom: 30px !important;
}

.mb70 {
  margin-bottom: 35px !important;
}

.mb80 {
  margin-bottom: 40px !important;
}

.mb90 {
  margin-bottom: 45px !important;
}

.mb100 {
  margin-bottom: 50px !important;
}

.mb120 {
  margin-bottom: 60px !important;
}

.mb140 {
  margin-bottom: 70px !important;
}

.mb160 {
  margin-bottom: 80px !important;
}

.mb180 {
  margin-bottom: 90px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
}
.mb-00 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

@media (min-width: 576px) {
  .mb-sm-00 {
    margin-bottom: 0px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
}
@media (min-width: 768px) {
  .mb-md-00 {
    margin-bottom: 0px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-00 {
    margin-bottom: 0px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
}
@media print {
  .mb-00 {
    margin-bottom: 0px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .mb-120 {
    margin-bottom: 120px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
}/*# sourceMappingURL=style.css.map */