@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=Barlow:wght@400;700&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

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.05em;
  overflow-x: hidden;
  font-size: 1.6rem;
  font-weight: 500;
}

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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: initial;
  position: fixed;
  top: 10px;
  z-index: 100;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
}
@media (min-width: 992px) {
  #header {
    top: 20px;
  }
}
@media (min-width: 1200px) {
  #header {
    top: 30px;
  }
}
#header #logo {
  display: block;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  width: 75vw;
  max-width: 310px;
}
@media (min-width: 576px) {
  #header #logo {
    width: 310px;
  }
}
@media (min-width: 768px) {
  #header #logo {
    width: 310px;
    max-width: initial;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 380px;
    max-width: initial;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 420px;
  }
}
#header #logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 420/80;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #304dca;
  padding: 0px 15px;
  border-radius: 0px 8px 8px 0px;
}
@media (min-width: 768px) {
  #header #logo a {
    padding: 0px 30px;
  }
}
#header #logo a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#header #mainNavi {
  display: none;
}
@media (min-width: 992px) {
  #header #mainNavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 8px 0px 0px 8px;
    height: 50px;
    padding: 0px 2.5rem;
  }
}
@media (min-width: 1200px) {
  #header #mainNavi {
    height: 60px;
  }
}
#header #mainNavi > li {
  display: block;
  border-left: dashed 1px #ccc;
}
#header #mainNavi > li:last-child {
  border-right: dashed 1px #ccc;
}
#header #mainNavi > li > a {
  padding: 0px 1rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: #000;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    padding: 0px 2.5rem;
  }
}
#header #mainNavi > li > a:before {
  width: 0%;
  content: "";
  display: block;
  background: #304dca;
  height: 1px;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
#header #mainNavi li.active a:before,
#header #mainNavi li a:hover:before {
  width: 100%;
}
#header.on #mainNavi a {
  text-shadow: none;
}
#header.on #mainNavi a::before {
  background: #000;
}

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

.dropdown-menu {
  border-radius: 8px;
  border: none;
}
.dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 1rem 0rem;
  border-bottom: solid 1px #acacac;
  line-height: 1.2;
  position: relative;
}
.dropdown-menu a:hover {
  color: #304dca;
  border-color: #304dca;
}
.dropdown-menu .active a {
  color: #304dca;
  border-color: #304dca;
}

.dropdown-menu.show {
  width: 240px;
  font-size: 1.4rem;
  margin-top: 14px !important;
  padding: 10px 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: #fff;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 60px 15px 15px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -340px;
    width: 340px;
  }
}
.side-open #sidebar {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 305px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #304dca;
  padding: 10px 20px;
  margin-left: -15px;
  border-radius: 0px 8px 8px 0px;
}
#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: #3a3a3a;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 10px;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: dashed 1px #5f5f5f;
  font-size: 15px;
  font-weight: 500;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  background: #e3f1ff;
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  width: 18px;
  right: 7px;
  background: url(../images/icon_plus.svg) no-repeat center/16px;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  right: 7px;
  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: 10px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#sidebar .submenu li a:hover {
  background: #f5faff;
}
#sidebar .submenu li.active a {
  background: #f5faff;
}

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

.sidebarTel {
  font-weight: 700;
  line-height: 1.2;
}
.sidebarTel .company {
  font-weight: 700;
  font-size: 16px;
}
.sidebarTel .tel {
  font-size: 7.2vw;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 576px) {
  .sidebarTel .tel {
    font-size: 28px;
  }
}
.sidebarTel .time {
  font-size: 1.5rem;
  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);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

.side-open .menuWrapper {
  top: 15px;
}

/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 15px;
  top: 4.5vw;
  width: 40px;
  height: 40px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 410px) {
  .menuWrapper {
    top: 20px;
  }
}
@media (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
#menuButton {
  background: #333;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  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;
  -webkit-transform: translate(0, -7px);
          transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  -webkit-transform: translate(0, 7px);
          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;
  -webkit-transition: opacity 150ms 50ms;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.side-open #menuButton::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #2c3d5b;
  color: #fff;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer .recruitBanner-Wrap {
  padding: 60px 0px;
  border-bottom: solid 1px #fff;
}
@media (min-width: 1200px) {
  #footer .recruitBanner-Wrap {
    padding: 90px 0px;
  }
}
#footer .recruitBanner {
  background: #fff;
  color: #36568f;
  font-weight: 700;
  width: 100%;
  aspect-ratio: 600/128;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  border-radius: 16px;
  padding: 0px 2vw 0px 3vw;
  font-size: 5.2vw;
}
@media (min-width: 576px) {
  #footer .recruitBanner {
    padding: 0px 15px 0px 30px;
    font-size: 3.6rem;
  }
}
@media (min-width: 768px) {
  #footer .recruitBanner {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  #footer .recruitBanner {
    padding: 0px 20px 0px 30px;
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  #footer .recruitBanner {
    font-size: 3.2rem;
    padding: 0px 20px 0px 40px;
  }
}
#footer .recruitBanner span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
#footer .recruitBanner span img {
  margin-right: 2.4vw;
  height: 8.8vw;
  -webkit-filter: invert(32%) sepia(15%) saturate(2125%) hue-rotate(180deg) brightness(92%) contrast(90%);
  filter: invert(32%) sepia(15%) saturate(2125%) hue-rotate(180deg) brightness(92%) contrast(90%);
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  #footer .recruitBanner span img {
    margin-right: 1.6rem;
    height: 46px;
  }
}
@media (min-width: 992px) {
  #footer .recruitBanner span img {
    margin-right: 1.8rem;
    height: 61px;
  }
}
#footer .recruitBanner:after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-filter: invert(30%) sepia(22%) saturate(1521%) hue-rotate(179deg) brightness(98%) contrast(87%);
  filter: invert(30%) sepia(22%) saturate(1521%) hue-rotate(179deg) brightness(98%) contrast(87%);
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  #footer .recruitBanner:after {
    width: 30px;
  }
}
@media (min-width: 992px) {
  #footer .recruitBanner:after {
    width: 40px;
  }
}
#footer .recruitBanner:hover {
  color: #304dca;
}
#footer .recruitBanner:hover span img {
  -webkit-filter: invert(22%) sepia(90%) saturate(2071%) hue-rotate(221deg) brightness(92%) contrast(90%);
  filter: invert(22%) sepia(90%) saturate(2071%) hue-rotate(221deg) brightness(92%) contrast(90%);
}
#footer .recruitBanner:hover:after {
  -webkit-transform: translate(4px, 0);
          transform: translate(4px, 0);
  -webkit-filter: invert(22%) sepia(90%) saturate(2071%) hue-rotate(221deg) brightness(92%) contrast(90%);
  filter: invert(22%) sepia(90%) saturate(2071%) hue-rotate(221deg) brightness(92%) contrast(90%);
}
#footer .footerBody {
  padding: 60px 0px;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  #footer .footerBody {
    padding: 90px 0px;
  }
}
#footer .footerLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
#footer .footerLeft #f-logo {
  width: 80vw;
  text-align: center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  #footer .footerLeft #f-logo {
    max-width: 320px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer .footerLeft #f-logo {
    text-align: left;
  }
}
#footer .footerLeft .companyName {
  font-size: 18px;
  font-weight: 700;
}
#footer .footerLeft .mapPin {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-left: 0.6rem;
  width: 11px;
  line-height: 0.01;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  #footer .footerLeft .mapPin {
    width: 14px;
  }
}
#footer .footerRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media (min-width: 992px) {
  #footer .footerRight {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0px;
  }
}
#footer .footerRight #textLink {
  display: none;
}
@media (min-width: 992px) {
  #footer .footerRight #textLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  #footer .footerRight #textLink {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1400px) {
  #footer .footerRight #textLink {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#footer .footerRight #textLink li {
  margin: 0px 0px 1rem 2rem;
}
#footer .footerRight #textLink li a {
  text-decoration: none;
}
#footer .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer .footerRight .textLink-sub {
  font-size: 12px;
  margin-top: 0.6rem;
}
#footer .footerRight .textLink-sub li {
  margin-bottom: 0.6rem !important;
  position: relative;
}
#footer .footerRight .textLink-sub li:before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0.9rem;
  left: -1.6rem;
}
#footer .footerRight #copy {
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
}
@media (min-width: 992px) {
  #footer .footerRight #copy {
    text-align: right;
  }
}

#pagetop {
  border-radius: 4px;
  overflow: hidden;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  width: 100%;
  padding-left: 5%;
}
#sliderWrap #catch {
  position: absolute;
  bottom: 5%;
  left: 10%;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
@media (min-width: 576px) {
  #sliderWrap #catch {
    width: 70%;
  }
}
@media (min-width: 768px) {
  #sliderWrap #catch {
    width: 60%;
  }
}
@media (min-width: 992px) {
  #sliderWrap #catch {
    width: 80%;
    left: 10%;
  }
}
@media (min-width: 1200px) {
  #sliderWrap #catch {
    width: 960px;
  }
}

#mainSlider {
  width: 100%;
  position: relative;
  border-radius: 16px 0px 0px 16px;
  overflow: hidden;
  /* before要素 */
}
#mainSlider .sp-buttons {
  padding-top: 0px;
  position: absolute;
  bottom: 0px;
}
#mainSlider .sp-button {
  width: 13.6666666667%;
  height: 2px;
  position: relative;
  background: #fff;
  border-radius: 0;
  border: 0;
}
#mainSlider .sp-selected-button:before {
  -webkit-animation-name: sliderpro-bg-color01;
  animation-name: sliderpro-bg-color01;
  -webkit-animation-duration: 5000ms;
  animation-duration: 5000ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 0;
  content: "";
  display: inline-block;
  height: 100%;
  background: #333;
  top: 0;
  left: 0;
  position: absolute;
}
@-webkit-keyframes sliderpro-bg-color01 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes sliderpro-bg-color01 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.message-Wrap {
  padding: 60px 0px;
  background: url(../images/bg_massage.jpg) no-repeat center center/auto 100%;
}
@media (min-width: 992px) {
  .message-Wrap {
    padding: 60px 0px 120px;
  }
}

.service-Wrap {
  padding: 60px 0px 120px;
  background: none;
}
@media (min-width: 992px) {
  .service-Wrap {
    background: url(../images/bg_logo.jpg) no-repeat right -100px top -150px/60% auto;
  }
}
@media (min-width: 1200px) {
  .service-Wrap {
    background: url(../images/bg_logo.jpg) no-repeat right top -150px/50% auto;
  }
}
@media (min-width: 1400px) {
  .service-Wrap {
    background: url(../images/bg_logo.jpg) no-repeat right top -150px;
  }
}
.service-Wrap .box {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (min-width: 992px) {
  .service-Wrap .box {
    height: 500px;
  }
}
.service-Wrap .box .img {
  display: none;
}
@media (min-width: 992px) {
  .service-Wrap .box .img {
    display: block;
    position: absolute;
    max-width: initial;
    -webkit-transform: translate(-108%, -20%);
            transform: translate(-108%, -20%);
    top: 0px;
    left: 0px;
  }
}
@media (min-width: 1400px) {
  .service-Wrap .box .img {
    -webkit-transform: translate(-116%, -20%);
            transform: translate(-116%, -20%);
  }
}

.blueGradation-Wrap {
  padding: 60px 0px;
  background: url(../images/bg_gradation.jpg) no-repeat center center/auto 100%;
}
@media (min-width: 992px) {
  .blueGradation-Wrap {
    padding: 120px 0px;
  }
}

.bannerBox {
  width: 100%;
  aspect-ratio: 600/300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
@media (min-width: 992px) {
  .bannerBox {
    aspect-ratio: 600/400;
  }
}
.bannerBox:hover .inr {
  background: #fff;
}
.bannerBox:hover .inr h4 {
  color: #304dca;
}
.bannerBox.stats {
  background: url(../images/p01_recruit01.jpg) no-repeat center/cover;
}
.bannerBox.career {
  background: url(../images/p01_recruit02.jpg) no-repeat center/cover;
}
.bannerBox .inr {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  .bannerBox .inr {
    height: 160px;
  }
}
.bannerBox h4 {
  color: #1a80e2;
  font-weight: 700;
  font-size: 7.29vw;
  line-height: 1.2;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  .bannerBox h4 {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .bannerBox h4 {
    font-size: 4.6rem;
  }
}
.bannerBox p {
  text-align: center;
  line-height: 1.4;
}
.bannerBox:hover h4 {
  color: #008ad2;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.name img {
  width: 40%;
  text-align: right;
}
@media (min-width: 576px) {
  .name img {
    width: 211px;
  }
}

.fix-BG {
  padding: 60px 0px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  isolation: isolate;
}
@media (min-width: 992px) {
  .fix-BG {
    padding: 120px 0px;
  }
}
.fix-BG:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
}
.fix-BG.elevator:before {
  background: #e8f5ff url(../images/bg_elevator.jpg) center center/cover no-repeat;
}
.fix-BG.building:before {
  background: #e8f5ff url(../images/bg_building.jpg) center center/cover no-repeat;
}

.gray-Wrap {
  background: #fafafa;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  .gray-Wrap {
    padding: 120px 0px;
  }
}

.textBox {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 118, 250, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 118, 250, 0.2);
}
@media (min-width: 992px) {
  .textBox {
    padding: 30px;
  }
}

.objective-DL dt {
  color: #0076fa;
  font-family: "Barlow", sans-serif;
  line-height: 1.4;
}
.objective-DL dd {
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.6rem;
}
.objective-DL dd:before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #304dca;
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.objective-DL dd span {
  font-weight: 700;
  color: #0076fa;
  font-size: 2rem;
}
.objective-DL dd:last-child {
  margin-bottom: 0;
}

.responsiveTable {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .responsiveTable {
    display: table;
  }
}
.responsiveTable.blue th {
  background: #7ebdec;
  color: #fff;
}
.responsiveTable.blue td {
  color: #000;
}
.responsiveTable.black th {
  background: #5a5a5a;
  color: #fff;
}
.responsiveTable th {
  width: 100%;
  padding: 20px 15px;
  font-weight: 700;
  border-top: none;
  line-height: 140%;
  display: block;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .responsiveTable th {
    width: 30%;
    padding: 25px 30px;
    border-bottom: solid 1px #fff;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
}
.responsiveTable td {
  width: 100%;
  padding: 15px 15px 35px;
  border-bottom: none;
  line-height: 140%;
  display: block;
  background: #fff;
}
@media (min-width: 768px) {
  .responsiveTable td {
    padding: 25px 30px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}

.qualification-Table {
  width: 100%;
}
.qualification-Table th,
.qualification-Table td {
  padding: 25px 15px;
}
@media (min-width: 992px) {
  .qualification-Table th,
  .qualification-Table td {
    padding: 25px;
  }
}
.qualification-Table thead th {
  background: #8dbbe0;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.qualification-Table tbody th {
  background: #8dbbe0;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-bottom: solid 1px #fff;
}
.qualification-Table tbody td {
  background: #fff;
  border-right: solid 1px #dadada;
  border-bottom: solid 1px #dadada;
}
.qualification-Table tbody tr:nth-child(odd) td {
  background: #f8f8f8;
}

.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.4rem;
  height: 0.4rem;
  background: #304dca;
  position: absolute;
  left: 0;
  top: 1rem;
}
.dotList.Horizonal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * service.html
 *  
 *-------------------------------------------------------------------------------------------*/
.gradation-Wrap {
  padding: 60px 0px;
  background: url(../images/bg_gradation.jpg) no-repeat center/cover;
}

.readText {
  font-weight: 700;
  color: #304dca;
  font-size: 7.2vw;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .readText {
    font-size: 6.2vw;
  }
}
@media (min-width: 768px) {
  .readText {
    font-size: 6rem;
  }
}
@media (min-width: 1400px) {
  .readText {
    font-size: 6.4rem;
  }
}

.service-DL {
  background: #fff;
  border-radius: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}
.service-DL dt {
  line-height: 1.4;
  color: #006de9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px 0px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
}
.service-DL dt span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #304dca;
  padding-bottom: 15px;
  width: 100%;
}
.service-DL .txt {
  padding: 15px;
}
@media (min-width: 992px) {
  .service-DL .txt {
    padding: 15px 25px;
  }
}

.flowDL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flowDL dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-right: 1.6rem;
  letter-spacing: 0;
}
.flowDL dt .num {
  font-size: 6vw;
}
@media (min-width: 576px) {
  .flowDL dt .num {
    font-size: 3.6rem;
  }
}
.flowDL dt .en {
  font-size: 2.4vw;
}
@media (min-width: 576px) {
  .flowDL dt .en {
    font-size: 1.2rem;
  }
}
.flowDL dd {
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .flowDL dd {
    font-size: 3.2rem;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * stats.html
 *  
 *-------------------------------------------------------------------------------------------*/
.flowBox1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 4px #333;
  border-radius: 20px;
  aspect-ratio: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  background: #fff;
  margin: 0px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .flowBox1 {
    margin: 0px 0.9rem;
    width: calc(100% - 1.8rem);
  }
}
@media (min-width: 768px) {
  .flowBox1 {
    margin: 0px 1.8rem;
    width: calc(100% - 3.6rem);
  }
}
@media (min-width: 1200px) {
  .flowBox1 {
    margin: 0px 3.6rem;
    width: calc(100% - 7.2rem);
  }
}
.flowBox1 .tit {
  position: absolute;
  font-weight: 700;
  background: #fff;
  color: #304dca;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 4px 8px;
  line-height: 1.4;
  white-space: nowrap;
  top: -6vw;
  font-size: 6vw;
}
@media (min-width: 576px) {
  .flowBox1 .tit {
    top: -20px;
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .flowBox1 .tit {
    top: -25px;
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .flowBox1 .tit {
    top: -25px;
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .flowBox1 .tit {
    top: -35px;
    font-size: 3rem;
  }
}
.flowBox1 .flow-img {
  margin-bottom: 1.6rem;
}
.flowBox1 .sub {
  font-size: 8vw;
  color: #008ad2;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .flowBox1 .sub {
    font-size: 4vw;
  }
}
@media (min-width: 768px) {
  .flowBox1 .sub {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  .flowBox1 .sub {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .flowBox1 .sub {
    font-size: 2.4rem;
  }
}
.flowBox1 .txt {
  font-size: 4.8vw;
}
@media (min-width: 576px) {
  .flowBox1 .txt {
    font-size: 1.8rem;
  }
}

.flowBox2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 4px #333;
  border-radius: 20px;
  padding: 5.2vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  background: #fff;
  margin: 0px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .flowBox2 {
    padding: 0px 15px;
    margin: 0px 0.9rem;
  }
}
@media (min-width: 768px) {
  .flowBox2 {
    padding: 0px 30px;
    margin: 0px 1.8rem;
  }
}
@media (min-width: 992px) {
  .flowBox2 {
    height: 253px;
    aspect-ratio: initial;
  }
}
@media (min-width: 1200px) {
  .flowBox2 {
    margin: 0px 3.6rem;
    height: 278px;
  }
}
@media (min-width: 1400px) {
  .flowBox2 {
    height: 338px;
  }
}
.flowBox2 .tit {
  position: absolute;
  font-weight: 700;
  background: #fff;
  color: #304dca;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 4px 8px;
  white-space: nowrap;
  text-align: center;
  top: -6vw;
  font-size: 6vw;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .flowBox2 .tit {
    top: -20px;
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .flowBox2 .tit {
    top: -25px;
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .flowBox2 .tit {
    top: -25px;
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .flowBox2 .tit {
    top: -35px;
    font-size: 3rem;
  }
}
.flowBox2 .flow-img {
  margin-bottom: 1.6rem;
}
.flowBox2 .flow-img img {
  height: auto;
}
@media (min-width: 992px) {
  .flowBox2 .flow-img img {
    height: 126px;
  }
}
@media (min-width: 1200px) {
  .flowBox2 .flow-img img {
    height: auto;
  }
}
.flowBox2 .txt {
  font-size: 4.8vw;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .flowBox2 .txt {
    font-size: 2.4rem;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * career-path.html
 *  
 *-------------------------------------------------------------------------------------------*/
.flow-Wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.2);
          box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.2);
  position: relative;
}
.flow-Wrap dl:after {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: #333;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  position: absolute;
  bottom: -20px;
  left: 18%;
}
@media (min-width: 768px) {
  .flow-Wrap dl:after {
    left: 12%;
  }
}
.flow-Wrap dl:last-child:after {
  display: none;
  margin-bottom: 0px;
}
.flow-Wrap dt {
  background: #304dca;
  color: #fff;
  font-family: "Barlow", sans-serif;
  padding: 5px 0px;
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .flow-Wrap dt {
    width: 10%;
  }
}
.flow-Wrap dd {
  background: #fff;
  padding: 5px 15px;
  width: 85%;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .flow-Wrap dd {
    width: 90%;
  }
}

.flowDL2 dt {
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: solid 2px #d4d7db;
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: 1.6rem;
}
.flowDL2 dt:before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #008ad2;
  position: absolute;
  left: 0px;
  bottom: -2px;
}

/*-------------------------------------------------------------------------------------------*
 *
 * job-description.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * entry.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
  background: #fff;
  padding: 30px 0px;
  line-height: 1.2;
}
.contactBox a {
  text-decoration: none;
}
.contactBox dt {
  color: #304dca;
  font-size: 5.2vw;
  text-align: center;
}
@media (min-width: 576px) {
  .contactBox dt {
    font-size: 3rem;
  }
}
.contactBox dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactBox dd .num {
  font-size: 6.25vw;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 576px) {
  .contactBox dd .num {
    font-size: 3.6rem;
  }
}
.contactBox dd .time {
  font-size: 1.4rem;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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.6rem;
  padding: 1.5rem 2rem;
  color: #333;
}

@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 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 20px 0px 20px 15px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
.select-Wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .select-Wrap {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .select-Wrap {
    width: 25%;
  }
}
.select-Wrap:after {
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 80%);
  width: 8px;
  aspect-ratio: 1;
  top: calc(50% + 1px);
  right: 4%;
  background: #333;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.select-Wrap select {
  -webkit-appearance: none;
}

textarea {
  width: 100%;
}

.form25 {
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .form25 {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .form25 {
    width: 25%;
  }
}

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

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

.required {
  background: #df443e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 56px;
  background: #008ad2;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border-radius: 30px;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #2c3d5b;
  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;
  -webkit-filter: brightness(0) invert(1);
  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;
  -webkit-filter: brightness(0) invert(1);
  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;
  -webkit-box-shadow: 0px 1px 2px #999 inset;
          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: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  #h2Title {
    height: 420px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 540px;
  }
}
#h2Title:after {
  content: "";
  display: block;
  width: 94%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  border-radius: 16px 0px 0px 16px;
}
@media (min-width: 768px) {
  #h2Title:after {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  #h2Title:after {
    width: 80%;
  }
}
#h2Title.p02:after {
  background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
}
#h2Title.p03:after {
  background: url(../images/bg_h2title03.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p04:after {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05:after {
  background: url(../images/bg_h2title05.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p06:after {
  background: url(../images/bg_h2title06.jpg) no-repeat center right -50vw;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  #h2Title.p06:after {
    background: url(../images/bg_h2title06.jpg) no-repeat center;
  }
}
#h2Title.p07:after {
  background: url(../images/bg_h2title07.jpg) no-repeat center;
}
#h2Title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  overflow: hidden;
  background: #fff;
  padding: 15px 30px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
  border-radius: 16px;
}
#h2Title h2 .en {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 14vw;
  text-align: left;
  color: #304dca;
  line-height: 1;
  margin-bottom: 0.4rem;
}
@media (min-width: 576px) {
  #h2Title h2 .en {
    font-size: 10rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .en {
    font-size: 10rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    margin-bottom: 1rem;
    font-size: 11rem;
  }
}
@media (min-width: 1400px) {
  #h2Title h2 .en {
    font-size: 12rem;
  }
}
#h2Title h2 .ja {
  font-size: 4.2vw;
  font-weight: 700;
  color: #1a80e2;
}
@media (min-width: 576px) {
  #h2Title h2 .ja {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .ja {
    font-size: 3.2rem;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  line-height: 1;
}
.title .ja {
  font-size: 3vw;
  font-weight: 700;
  color: #0076fa;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 3.2rem;
  }
}
.title .en {
  font-size: 10vw;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  color: #304dca;
}
@media (min-width: 576px) {
  .title .en {
    font-size: 7rem;
  }
}
@media (min-width: 768px) {
  .title .en {
    font-size: 9rem;
  }
}
.title.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}

.title2 {
  font-size: 5.6vw;
  font-weight: 700;
  color: #0076fa;
}
@media (min-width: 768px) {
  .title2 {
    font-size: 5.8rem;
  }
}

.subTitle {
  font-weight: 700;
  color: #304dca;
  font-size: 6vw;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .subTitle {
    font-size: 3rem;
  }
}

.subTitle2 {
  font-size: 6vw;
  font-weight: 700;
  color: #304dca;
}
@media (min-width: 576px) {
  .subTitle2 {
    font-size: 3.2rem;
  }
}
@media (min-width: 1400px) {
  .subTitle2 {
    font-size: 3.6rem;
  }
}

.subTitle3 {
  font-weight: 700;
  color: #fff;
  font-size: 3.125vw;
  line-height: 1.4;
  background: #304dca;
  border-radius: 8px;
  padding: 4px 16px;
  width: 100%;
}
@media (min-width: 576px) {
  .subTitle3 {
    font-size: 1.8rem;
  }
}

.read {
  font-size: 2.4rem;
  color: #204483;
  font-weight: 700;
}
.read:before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  aspect-ratio: 1;
  background: #204483;
  margin-right: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.radiusImage {
  border-radius: 16px;
  overflow: hidden;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #0076fa;
  color: #fff;
  font-weight: 700;
  max-width: 260px;
  width: 100%;
  height: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 29px;
  padding: 0px 2px 0px 27px;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 29px;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  .detailBtn {
    height: 58px;
    max-width: 360px;
  }
}
.detailBtn:after {
  content: "";
  width: 44px;
  aspect-ratio: 1;
  background: #fff url(../images/icon_arrow-blue.svg) no-repeat center/18px;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .detailBtn:after {
    width: 54px;
  }
}
.detailBtn:hover {
  color: #fff;
  background: #006de9;
}
.detailBtn:hover:after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.detailBtn.white {
  background: #fff;
  color: #304dca;
}
.detailBtn.white:hover {
  color: #fff;
  background: #304dca;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.indent1 {
  text-indent: 1em;
}

.w100 {
  width: 100%;
}

.w50 {
  width: 50%;
}

.h100 {
  height: 100%;
}

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

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

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

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

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.blue {
  color: #304dca;
}

.sky-blue {
  color: #008ad2;
}

.white {
  color: #fff;
}

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

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2;
}

.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-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 */