@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&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-weight: 400;
  font-style: normal;
}

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

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

body {
  color: #000;
  background: #d9d9d9;
  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;
  overflow-x: hidden;
  font-size: 1.8rem;
}

h1,
h2,
h3,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.85;
}

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

dl,
ul,
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: 60px;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: center;
  padding: 0px 10px;
}
@media (min-width: 576px) {
  #header {
    padding: 0px 15px;
  }
}
@media (min-width: 992px) {
  #header {
    padding: 0px 30px;
    height: 80px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 90px;
    padding: 0px 30px;
  }
}
#header #logo {
  transition: all 600ms 0s ease;
  width: 170px;
}
@media (min-width: 576px) {
  #header #logo {
    width: 190px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 210px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 242px;
  }
}
#header #logo a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
#header #logo a #logo-type {
  filter: brightness(0) invert(1);
  width: 49%;
}
#header #logo a #logo-mark {
  width: 51%;
}
#header #header-Right {
  display: flex;
}
#header #mainNavi {
  display: none;
}
@media (min-width: 1200px) {
  #header #mainNavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  padding: 0px 0px 0px 4rem;
  text-decoration: none;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    font-size: 1.8rem;
  }
}
#header #mainNavi > li > a:before {
  width: 0%;
  content: "";
  display: block;
  background: #fff;
  height: 1px;
  transition: all 600ms 0s ease;
}
#header #mainNavi > li#contactButton {
  margin-left: 1.5rem;
}
#header #mainNavi > li#contactButton a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  height: 100%;
  background: #2f3c5b;
  height: 38px;
  width: 210px;
  transition: all 600ms 0s ease;
}
@media (min-width: 1400px) {
  #header #mainNavi > li#contactButton a {
    height: 38px;
    width: 220px;
  }
}
#header #mainNavi > li#contactButton a:before {
  display: none;
}
#header #mainNavi > li#contactButton a img {
  filter: brightness(0) invert(1);
  width: 16px;
  margin-right: 0.7rem;
}
@media (min-width: 1400px) {
  #header #mainNavi > li#contactButton a img {
    width: 17px;
  }
}
#header #mainNavi > li#contactButton a:hover, #header #mainNavi > li#contactButton a.active a {
  opacity: 0.7;
}
#header #mainNavi li.active a:before,
#header #mainNavi li a:hover:before {
  width: 100%;
}
#header #snsList {
  display: flex;
  margin-right: 45px;
}
@media (min-width: 576px) {
  #header #snsList {
    margin-right: 55px;
  }
}
@media (min-width: 992px) {
  #header #snsList {
    margin-right: 60px;
  }
}
@media (min-width: 1200px) {
  #header #snsList {
    margin-right: 0px;
  }
}
#header #snsList li {
  margin-left: 10px;
}
@media (min-width: 576px) {
  #header #snsList li {
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  #header #snsList li {
    margin-left: 3.8rem;
  }
}
#header.on {
  top: 0px;
  height: 60px;
  background: #fff;
}
#header.on #logo {
  width: 170px;
}
#header.on #logo #logo-type {
  filter: none;
}
#header.on #mainNavi a {
  text-shadow: none;
  color: #000;
}
#header.on #mainNavi a::before {
  background: #000;
}
#header.on #snsList .insta {
  filter: none;
}

.dropdown-toggle {
  padding-right: 24px !important;
  position: relative;
}
.dropdown-toggle:after {
  position: absolute;
  right: 8px;
  top: 50%;
}

.dropdown-menu {
  border-radius: 0px;
  border: none;
}
.dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 0px;
  border-bottom: dashed 1px #acacac;
  line-height: 1.2;
  padding-right: 2.8rem;
  position: relative;
}
.dropdown-menu a:hover {
  background: #ececec;
}
.dropdown-menu a:after {
  content: "";
  display: block;
  width: 16px !important;
  aspect-ratio: 16/7;
  background: url(../images/icon_arrow.png) no-repeat center;
  position: absolute;
  top: 1.6rem;
  right: 4px;
}

.dropdown-menu.show {
  width: 280px;
  font-size: 1.4rem;
  margin-top: 6px !important;
  padding: 8px 15px !important;
}
@media (min-width: 1400px) {
  .dropdown-menu.show {
    font-size: 1.6rem;
  }
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #e9e9e9;
  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;
  display: flex;
  justify-content: space-between;
}
#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;
}
#sidebar .list-sidenav > li > a {
  color: #000;
  line-height: 1.2;
  display: flex;
  padding: 14px 10px;
  position: relative;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: dashed 1px #5f5f5f;
  font-size: 15px;
  font-weight: 700;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  background: url(../images/bg_concreat.jpg) repeat;
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  width: 18px;
  right: 4px;
  background: url(../images/icon_plus.svg) no-repeat center/16px;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  right: 4px;
  background: url(../images/icon_minus.svg) no-repeat center/16px;
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #cacaca;
}
#sidebar .submenu li a {
  padding: 10px 15px 10px 28px;
  font-size: 14px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#sidebar .submenu li a:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
#sidebar .submenu li a:hover {
  background: #f7f7f7;
}
#sidebar .submenu li a.active a {
  background: #f7f7f7;
}

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

#sidebar-SNS {
  display: flex;
  justify-content: center;
}
#sidebar-SNS li {
  text-align: center;
  margin: 0px 2rem;
}

#sidebarTel .tel {
  font-weight: 700;
}
#sidebarTel .tel .en {
  font-size: 1.8rem;
}
#sidebarTel .tel .num {
  font-size: 3rem;
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* -------------------------------
          オーバーレイ
      -------------------------------- */
.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: 10px;
  top: 12px;
  width: 36px;
  height: 36px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  .menuWrapper {
    right: 15px;
  }
}
@media (min-width: 992px) {
  .menuWrapper {
    right: 20px;
    top: 22px;
  }
}
@media (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
.menuWrapper.on {
  right: 10px;
  top: 12px;
}
@media (min-width: 576px) {
  .menuWrapper.on {
    right: 15px;
  }
}
@media (min-width: 992px) {
  .menuWrapper.on {
    right: 20px;
  }
}
.menuWrapper.on #menuButton {
  background: #000;
}
.menuWrapper.on #menuButton span, .menuWrapper.on #menuButton:before, .menuWrapper.on #menuButton:after {
  background: #fff;
}
.menuWrapper.on #menuButton small {
  color: #fff;
}

#menuButton {
  border-radius: 4px;
  background: #fff;
  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: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#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: 3px;
  width: 100%;
  color: #000;
  font-size: 8px;
  font-weight: 700;
  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: #212121;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  padding: 90px 0px 90px;
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px;
  }
}
#footer #footerBody .footerLeft {
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 70vw;
  text-align: center;
  margin: 0px auto;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 320px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    text-align: left;
    margin: initial;
  }
}
#footer #footerBody .footerLeft .mapPin {
  width: 14px;
  display: inline-flex;
  filter: brightness(0) invert(1);
  margin-left: 0.6rem;
}
#footer #footerBody .footerLeft .f-tel {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1;
  }
}
#footer #footerBody .footerLeft .f-tel .en {
  font-size: 1.8rem;
}
#footer #footerBody .footerLeft .f-tel .num {
  font-size: 3rem;
}
#footer #footerBody .footerRight #textLink {
  display: none;
}
@media (min-width: 576px) {
  #footer #footerBody .footerRight #textLink {
    justify-content: center;
    font-size: 1.4rem;
    height: 41px;
    align-items: center;
    display: flex;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    justify-content: flex-end;
  }
}
#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;
}
#footer #footerBody .footerRight #footer-SNS {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #footer-SNS {
    justify-content: flex-end;
  }
}
#footer #footerBody .footerRight #footer-SNS li {
  margin-left: 2rem;
}
#footer #copy {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
  background: #000;
  color: #fff;
}

#pagetop {
  transform-origin: right bottom;
  transform: scale(0.75);
}
@media (min-width: 1200px) {
  #pagetop {
    transform: scale(1);
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  width: 100%;
  background: #d9d9d9 url(../images/bg_slider.jpg) no-repeat top left -150px/auto 97%;
  display: flex;
  justify-content: flex-end;
  padding-left: 38%;
  padding-top: 0x;
}
@media (min-width: 576px) {
  #sliderWrap {
    padding-left: 45%;
  }
}
@media (min-width: 992px) {
  #sliderWrap {
    background: #d9d9d9 url(../images/bg_slider.jpg) no-repeat top left/auto 95%;
    padding-top: 80px;
    padding-left: 45%;
  }
}
@media (min-width: 1200px) {
  #sliderWrap {
    padding-left: 40%;
  }
}
@media (min-width: 1400px) {
  #sliderWrap {
    background: #d9d9d9 url(../images/bg_slider.jpg) no-repeat top left/auto 93%;
    padding-left: 40%;
    padding-top: 90px;
  }
}
#sliderWrap #catch {
  position: absolute;
  bottom: 40px;
  left: 15px;
  z-index: 1;
  width: 70vw;
}
@media (min-width: 992px) {
  #sliderWrap #catch {
    bottom: 30px;
    left: 30px;
    z-index: 1;
    width: 60vw;
  }
}
@media (min-width: 1200px) {
  #sliderWrap #catch {
    width: 65vw;
  }
}

#mainSlider {
  width: 100%;
  position: relative;
  /* before要素 */
}
#mainSlider.slider-pro img.sp-image.img01 {
  transform: translateX(-250px);
}
@media (min-width: 768px) {
  #mainSlider.slider-pro img.sp-image.img01 {
    transform: translateX(-180px);
  }
}
@media (min-width: 1400px) {
  #mainSlider.slider-pro img.sp-image.img01 {
    transform: translateX(-120px);
  }
}
@media (min-width: 1600px) {
  #mainSlider.slider-pro img.sp-image.img01 {
    transform: translateX(-70px);
  }
}
#mainSlider.slider-pro img.sp-image.img02 {
  transform: translateX(-100px);
}
@media (min-width: 768px) {
  #mainSlider.slider-pro img.sp-image.img02 {
    transform: translateX(-100px);
  }
}
#mainSlider.slider-pro img.sp-image.img03 {
  transform: translateX(-20px);
}
@media (min-width: 768px) {
  #mainSlider.slider-pro img.sp-image.img03 {
    transform: translateX(-30px);
  }
}

.sp-slide {
  -webkit-mask: url(../images/mask.slider.svg) no-repeat left center/auto 100%;
  mask: url(../images/mask.slider.svg) no-repeat left center/auto 100%;
}

/* スクロールダウンの位置 */
.scroll_down {
  position: absolute;
  bottom: 45px;
  right: 45px;
  animation: arrowmove 1s ease-in-out infinite;
  z-index: 10;
  transform-origin: right bottom;
  transform: scale(0.75);
}
@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);
  }
}
.heightBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
}

.bg_copmany {
  background: url(../images/bg_decoration-right.jpg) no-repeat right bottom;
}

.bg_recruit {
  background: url(../images/bg_decoration-left.jpg) no-repeat left top;
}

.padding-Left {
  padding-left: 0px;
}
@media (min-width: 1200px) {
  .padding-Left {
    padding-left: 8.133%;
  }
}

.padding-Right {
  padding-right: 0px;
}
@media (min-width: 1200px) {
  .padding-Right {
    padding-right: 8.133%;
  }
}

.wrap1200 {
  padding: 0px 24px;
}
@media (min-width: 1200px) {
  .wrap1200 {
    padding: 0px;
  }
}

.fiximg {
  height: 260px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  isolation: isolate;
}
@media (min-width: 768px) {
  .fiximg {
    height: 360px;
  }
}
@media (min-width: 992px) {
  .fiximg {
    height: 460px;
  }
}
.fiximg:before {
  content: "";
  background: url(../images/bg_hr.jpg) center center/cover no-repeat;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.concreat-Wrap {
  padding: 60px 14px;
  background: url(../images/bg_concreat.jpg) repeat center;
}
@media (min-width: 992px) {
  .concreat-Wrap {
    padding: 120px 14px;
  }
}

.service-Title {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .service-Title {
    height: 70px;
    font-size: 2.6rem;
  }
}
.service-Title.green {
  background: url(../images/bg_title-green.png) no-repeat center/auto 100%;
}
.service-Title.red {
  background: url(../images/bg_title-red.png) no-repeat center/auto 100%;
}
.service-Title.blue {
  background: url(../images/bg_title-blue.png) no-repeat center/auto 100%;
}

.contact-Wrap {
  background: url(../images/bg_contact.jpg) no-repeat center/auto 100%;
  padding: 90px 14px;
}
@media (min-width: 1200px) {
  .contact-Wrap {
    padding: 180px 14px;
  }
}
.contact-Wrap .title {
  align-items: center;
}
@media (min-width: 1200px) {
  .contact-Wrap .title {
    align-items: start;
  }
}

.link {
  text-decoration: none;
}
.link:hover {
  opacity: 0.8;
}

.telDl {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1200px) {
  .telDl {
    text-align: left;
  }
}
.telDl dt {
  font-size: 2rem;
}
@media (min-width: 576px) {
  .telDl dt {
    font-size: 3rem;
  }
}
.telDl dd {
  font-family: "Roboto", sans-serif;
  font-size: 7vw;
}
@media (min-width: 576px) {
  .telDl dd {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .telDl dd {
    font-size: 6rem;
  }
}
.telDl dd img {
  width: 7vw;
  margin-right: 7px;
}
@media (min-width: 576px) {
  .telDl dd img {
    width: 64px;
  }
}
.telDl dd a {
  text-decoration: none;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.service-Wrap {
  padding: 45px 15px;
}
@media (min-width: 992px) {
  .service-Wrap {
    padding: 90px 15px;
    background: url(../images/bg_decoration-right.jpg) no-repeat right bottom;
  }
}

.serviceList {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .serviceList {
    font-size: 4.8rem;
  }
}
.serviceList li {
  padding-left: 1em;
  border-bottom: solid 2px #000;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
.serviceList li:before {
  content: "";
  display: block;
  width: 0.4em;
  aspect-ratio: 1;
  background: #000;
  position: absolute;
  left: 0.2em;
  top: 0.5em;
}
.serviceList li:nth-child(1) {
  color: #1859c3;
}
.serviceList li:nth-child(1):before {
  background: #1859c3;
}
.serviceList li:nth-child(2) {
  color: #fb3030;
}
.serviceList li:nth-child(2):before {
  background: #fb3030;
}
.serviceList li:nth-child(3) {
  color: #2b9216;
}
.serviceList li:nth-child(3):before {
  background: #2b9216;
}

.slider01 .slick-slide {
  margin: 0px 5px;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable5 {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #8d8d8d;
}
@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 #000;
}
.responsiveTable5 tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable5 tr:first-child td {
    border-top: solid 1px #8d8d8d;
  }
}
.responsiveTable5 th {
  width: 100%;
  padding: 25px 0px 0px;
  font-weight: bold;
  border-top: solid 1px #000;
  line-height: 140%;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .responsiveTable5 th {
    padding: 25px 0px;
    width: 30%;
    border-top: none;
    border-bottom: solid 1px #000;
    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 {
    padding: 25px 15px;
    border-top: none;
    border-bottom: solid 1px #8d8d8d;
    line-height: 140%;
    display: table-cell;
  }
}

.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: #0a4d9b;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.googleMap {
  width: 100%;
  height: 320px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 480px;
  }
}

.awardImg {
  max-width: 67%;
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.tabBtn {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0px 30px;
  text-decoration: none;
  position: relative;
  background: #0c3388;
  color: #fff;
  border-radius: 10px;
  font-size: 2.4rem;
}
.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: #333;
}
.tabBtn:hover:after {
  filter: brightness(0);
  opacity: 0.4;
}
.tabBtn.green {
  background: url(../images/bg_anchorbtn-green.png) no-repeat center/cover;
}
.tabBtn.red {
  background: url(../images/bg_anchorbtn-red.png) no-repeat center/cover;
}
.tabBtn.blue {
  background: url(../images/bg_anchorbtn-blue.png) no-repeat center/cover;
}

.logo-slider .slick-slide {
  margin: 0px 1.5rem;
}
@media (min-width: 768px) {
  .logo-slider .slick-slide {
    margin: 0px 3rem;
  }
}

.flowBox5 {
  display: flex;
  border-radius: 8px;
  aspect-ratio: initial;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  height: 100%;
  margin: 0px 5px;
  padding: 25px 0px 15px;
}
@media (min-width: 992px) {
  .flowBox5 {
    margin: 0px 15px;
  }
}
@media (min-width: 1200px) {
  .flowBox5 {
    margin: 0px 30px;
  }
}
.flowBox5.blue {
  background: #1859c3;
}
.flowBox5.red {
  background: #fb3030;
}
.flowBox5.green {
  background: #2b9216;
}
.flowBox5 .img {
  margin: 0px 30px 15px;
}
.flowBox5 .step {
  position: absolute;
  font-size: 2.4rem;
  font-weight: 700;
  background: #1c88db;
  color: #fff;
  width: 36px;
  height: 36px;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flowBox5 .tit {
  font-size: 3vw;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .flowBox5 .tit {
    font-size: 2rem;
  }
}
.flowBox5 .txt {
  display: flex;
  padding: 0px 15px 15px;
  color: #333;
  margin: 0px;
  line-height: 1.4;
  text-align: left;
}
@media (min-width: 1400px) {
  .flowBox5 .txt {
    padding: 0px 30px;
    text-align: center;
  }
}

.lineBtn {
  border: solid 2px #06c755;
  background: #fff;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
.lineBtn img {
  margin-right: 0.8rem;
}
.lineBtn:hover {
  border: solid 2px #12a14e;
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.telDl-contact {
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1200px) {
  .telDl-contact {
    text-align: left;
  }
}
.telDl-contact dt {
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 576px) {
  .telDl-contact dt {
    font-size: 2rem;
  }
}
.telDl-contact dd {
  font-family: "Roboto", sans-serif;
  font-size: 9vw;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .telDl-contact dd {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .telDl-contact dd {
    font-size: 6rem;
  }
}
.telDl-contact dd img {
  width: 8vw;
  margin-right: 7px;
  filter: brightness(0);
}
@media (min-width: 576px) {
  .telDl-contact dd img {
    width: 64px;
  }
}
.telDl-contact dd a {
  text-decoration: none;
  color: #000;
}

.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 #666;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.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: 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 25px 0px 25px 15px;
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    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: #fb3030;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #fb3030;
  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;
  min-height: 56px;
  background: #000;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #333;
  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: 1.2rem;
  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: 1.2rem;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  height: 360px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  #h2Title {
    height: 420px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 480px;
  }
}
#h2Title.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center right 30%/auto 100%;
}
@media (min-width: 768px) {
  #h2Title.p02 {
    background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
  }
}
#h2Title.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center right 20%/auto 100%;
}
@media (min-width: 992px) {
  #h2Title.p03 {
    background: url(../images/bg_h2title03.jpg) no-repeat center right 30%/auto 100%;
  }
}
@media (min-width: 1400px) {
  #h2Title.p03 {
    background: url(../images/bg_h2title03.jpg) no-repeat center/auto 100%;
  }
}
#h2Title.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center right 20%/auto 100%;
}
@media (min-width: 1400px) {
  #h2Title.p04 {
    background: url(../images/bg_h2title04.jpg) no-repeat center/auto 100%;
  }
}
#h2Title.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center right 40%/auto 100%;
}
@media (min-width: 992px) {
  #h2Title.p05 {
    background: url(../images/bg_h2title05.jpg) no-repeat center/auto 100%;
  }
}
#h2Title h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 40%;
  aspect-ratio: 498/377;
  background: url(../images/h2_title-base.png) no-repeat center left/contain;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1;
  margin-left: 15px;
}
@media (min-width: 576px) {
  #h2Title h2 {
    margin-left: 30px;
    height: 60%;
  }
}
@media (min-width: 992px) {
  #h2Title h2 {
    margin-left: 10vw;
    height: 70%;
  }
}
#h2Title h2 .en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12vw;
  text-align: left;
  line-height: 1;
}
@media (min-width: 576px) {
  #h2Title h2 .en {
    font-size: 7.8rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .en {
    font-size: 7.8rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    font-size: 8.4rem;
  }
}
#h2Title h2 .ja {
  font-size: 5.2vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  #h2Title h2 .ja {
    font-size: 3.6rem;
  }
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1;
}
.title .en {
  font-size: 5vw;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .title .en {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 4.2rem;
  }
}
.title .en:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  transform-origin: center;
  transform: scale(0.4);
  aspect-ratio: 10/8;
  width: 10vw;
  left: 0px;
  top: 25%;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .title .en:before {
    width: 60px;
  }
}
@media (min-width: 992px) {
  .title .en:before {
    width: 100px;
  }
}
.title .ja {
  font-size: 7vw;
  font-weight: 700;
  position: relative;
}
@media (min-width: 768px) {
  .title .ja {
    font-size: 5.8rem;
  }
}
@media (min-width: 1400px) {
  .title .ja {
    font-size: 6.4rem;
  }
}
.title.center {
  align-items: center;
}
.title.center .en {
  text-align: center;
}
.title.center .ja {
  text-align: center;
}
.title.green .en:before {
  background: url(../images/title_img01.png) no-repeat center/contain;
}
.title.green .ja {
  color: #2b9216;
}
.title.red .en:before {
  background: url(../images/title_img02.png) no-repeat center/contain;
}
.title.red .ja {
  color: #fb3030;
}
.title.blue .en:before {
  background: url(../images/title_img03.png) no-repeat center/contain;
}
.title.blue .ja {
  color: #1859c3;
}
.title.white .en {
  color: #fff;
}
.title.white .en:before {
  width: 60px;
  height: 63px;
  background: url(../images/title_img00.png) no-repeat center/contain;
  top: -20px;
  left: -46px;
}
.title.white .ja {
  color: #fff;
}

.subTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subTitle .en {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #27b0fc;
  font-size: 2.4rem;
}
.subTitle .ja {
  font-size: 3.6rem;
  font-weight: 700;
}

.subTitle2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0a5cb8;
}

.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
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  max-width: 320px;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  text-decoration: none;
}
.detailBtn:after {
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn:hover {
  color: #fff;
}
.detailBtn:hover:after {
  transform: translate(4px, 0);
}
.detailBtn.green {
  background: #3a8a2a;
}
.detailBtn.green:hover {
  background: #2a5f1f;
}
.detailBtn.red {
  background: #fb3030;
}
.detailBtn.red:hover {
  background: #cf3434;
}
.detailBtn.blue {
  background: #1859c3;
}
.detailBtn.blue:hover {
  background: #1a4ea3;
}

.detailBtn-Large {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  max-width: 475px;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  text-decoration: none;
  font-size: 2rem;
}
@media (min-width: 576px) {
  .detailBtn-Large {
    font-size: 3rem;
    height: 68px;
  }
}
.detailBtn-Large:after {
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn-Large:hover {
  color: #fff;
}
.detailBtn-Large:hover:after {
  transform: translate(4px, 0);
}
.detailBtn-Large.white {
  background: #fff;
  color: #000;
}
.detailBtn-Large.white:after {
  filter: brightness(0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.wrapper {
  width: 100%;
  padding: 0px 15px;
}

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

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

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small,
.small {
  font-size: 75%;
  line-height: 0.75;
}

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

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

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

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

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

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

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

.m-auto {
  margin: 0px auto;
}

.mt-00 {
  margin-top: 0px;
}

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

@media (min-width: 992px) {
  .mt-lg-00 {
    margin-top: 0px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .mt-lg-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;
}

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

.mb220 {
  margin-bottom: 110px !important;
}

.mb240 {
  margin-bottom: 120px !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;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .mb220 {
    margin-bottom: 220px !important;
  }
  .mb240 {
    margin-bottom: 240px !important;
  }
}
.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;
}

.mb250 {
  margin-bottom: 175px !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;
  }
  .mb250 {
    margin-bottom: 250px !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-150 {
  margin-bottom: 150px !important;
}

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

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

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

.mb-250 {
  margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .mb-sm-210 {
    margin-bottom: 210px !important;
  }
  .mb-sm-240 {
    margin-bottom: 240px !important;
  }
  .mb-sm-250 {
    margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .mb-md-210 {
    margin-bottom: 210px !important;
  }
  .mb-md-240 {
    margin-bottom: 240px !important;
  }
  .mb-md-250 {
    margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
  .mb-lg-210 {
    margin-bottom: 210px !important;
  }
  .mb-lg-240 {
    margin-bottom: 240px !important;
  }
  .mb-lg-250 {
    margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xl-250 {
    margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xxl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xxl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xxl-250 {
    margin-bottom: 250px !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-150 {
    margin-bottom: 150px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .mb-210 {
    margin-bottom: 210px !important;
  }
  .mb-240 {
    margin-bottom: 240px !important;
  }
}/*# sourceMappingURL=style.css.map */