@charset "utf-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
/*!
 * Sanitize 12.0.1 (https://github.com/csstools/sanitize.css)
 * Licensed under the CC0 1.0 Universal.
 */
*,:after,:before{box-sizing:border-box;background-repeat:no-repeat}
:after,:before{text-decoration:inherit;vertical-align:inherit}
html{cursor:default;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word}
body{margin:0}
h1{font-size:2em;margin:.67em 0}
dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{margin:0}
hr{color:inherit;height:0;overflow:visible}
main{display:block}
nav ol,nav ul{list-style:none;padding:0}
/*nav li:before{content:"\200B"}*/
pre{font-family:monospace;font-size:1em;overflow:auto;-ms-overflow-style:scrollbar}
a{background-color:transparent}
abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace;font-size:1em}
small{font-size:80%}
audio,canvas,iframe,img,svg,video{vertical-align:middle}
audio,video{display:inline-block}
audio:not([controls]){display:none;height:0}
iframe,img{border-style:none}
svg:not([fill]){fill:currentColor}
svg:not(:root){overflow:hidden}
table{border-collapse:collapse;border-color:inherit;text-indent:0}
button,input,select{margin:0}
button{overflow:visible;text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}
input{overflow:visible}
legend{color:inherit;display:table;max-width:100%;white-space:normal}
progress{display:inline-block;vertical-align:baseline}
select{text-transform:none}
textarea{margin:0;overflow:auto;resize:vertical;resize:vertical}
[type=checkbox],[type=radio]{padding:0}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}
::-webkit-input-placeholder{color:inherit;opacity:.54}
::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
::-moz-focus-inner{border-style:none;padding:0}
:-moz-focusring{outline:1px dotted ButtonText}
:-moz-ui-invalid{box-shadow:none}
details,dialog{display:block}
dialog{background-color:#fff;border:solid;color:#000;height:-moz-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:fit-content}
dialog:not([open]){display:none}
summary{display:list-item}
canvas{display:inline-block}
template{display:none}
[tabindex],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation}
[hidden]{display:none}
[aria-busy=true]{cursor:progress}
[aria-controls]{cursor:pointer}
[aria-disabled=true],[disabled]{cursor:not-allowed}
[aria-hidden="false"][hidden]{display:inline;display:initial}
[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}
html {
  font-size: 62.5%;
}
body {
  /* overflow-x: hidden; */
  background: #fff;
  color: #282828;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.5em;
  line-height: 1.86;
  letter-spacing: 0.05em;
}
a {
  color: #004898;
  transition: all 0.2s;
}
a:hover,
a:active {
  color: #3688cc;
}
/* Typography Base Setting */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1em;
}
ol,
ul {
  padding-left: 2em;
}
ol {
  list-style: decimal outside none;
}
ul {
  list-style: disc outside none;
}
li ol,
li ul {
  margin-bottom: 0;
}
nav ol,
nav ul {
  list-style: none;
  padding-left: 0;
}
em {
  font-style: normal;
}
rp,
rt {
  line-height: 1;
  font-size: 0.688em;
}
table {
  empty-cells: show;
  font-size: 1em;
}
iframe {
  display: block;
  width: 100%;
}
img {
  height: auto;
}
img,
iframe,
button,
input,
select,
textarea {
  max-width: 100%;
}
figure {
  margin: 0;
}
textarea {
  height: auto;
  resize: vertical;
}
/* ==========================================================================
   Layout
   ========================================================================== */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease 0.3s both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.container {
  display: block;
  position: relative;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 900px;
}
/* -----------------------------------
 Header
----------------------------------- */
/* -----------------------------------
  Content
----------------------------------- */
/* パンくず */
.breadcrumb {
  margin-bottom: 20px;
  padding: 20px 4%;
  color: #9ca0a0;
  font-size: 1.2rem;
  line-height: 1.4
}
.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
  }
.breadcrumb li:nth-of-type(n + 2)::before {
    content: "";
    display: inline-block;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    margin: 0 10px;
    border-top: 1px solid;
    border-right: 1px solid;
    vertical-align: 0.15em;
  }
.breadcrumb a {
    color: inherit;
    text-decoration: none;
  }
/* 本文 */
.section {
  position: relative;
  padding: 60px 0;
}
/* -----------------------------------
  Footer
----------------------------------- */
.footer {
  position: relative;
  margin-top: 100px;
  padding-bottom: 80px;
  background: #f7f8f8;
  font-size: 1.4rem
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
.footer__inner {
  padding-top: 50px;
  padding-bottom: 40px;
  border-top: 1px solid #fff;
}
.footer__main .tel {
    display: inline-block;
    font-family: serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
.footer__main .tel-number {
    font-size: 2.6rem;
  }
.footer__logo {
  width: 294px;
  margin-bottom: 15px;
}
.footer-navi {
  margin-top: 40px
}
.footer-navi a {
    display: inline-block;
    margin-bottom: 0.5em;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
  }
.footer-navi a:hover {
    opacity: 0.6;
  }
.footer-navi .footer-btn {
    display: block;
    padding: 1.15em;
    border-radius: 6px;
    background: #004898;
    color: #fff !important
  }
.footer-navi .footer-btn .icon {
      display: inline-block;
      margin-right: 0.2em;
      font-size: 1.5em;
      line-height: 1;
      vertical-align: -0.1em;
    }
.copyright {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
}
.pagetop {
  position: fixed;
  bottom: 90px;
  right: 2.7%;
  z-index: 1;
  transform: translateX(-50%)
}
.pagetop a {
    display: block;
    position: relative;
    width: 20px;
    margin: 0 auto;
  }
/* ==========================================================================
   Object
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
.cols,
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px
}
.cols.col-gapless, .columns.col-gapless {
    margin-left: 0;
    margin-right: 0
  }
.cols.col-gapless > .column, .columns.col-gapless > .column {
      padding-left: 0;
      padding-right: 0;
    }
.cols.col-oneline, .columns.col-oneline {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
.justify-center {
  justify-content: center;
}
[class*="col-"],
.column {
  flex: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px
}
[class*="col-"].col-12,
  [class*="col-"].col-11,
  [class*="col-"].col-10,
  [class*="col-"].col-9,
  [class*="col-"].col-8,
  [class*="col-"].col-7,
  [class*="col-"].col-6,
  [class*="col-"].col-5,
  [class*="col-"].col-4,
  [class*="col-"].col-3,
  [class*="col-"].col-2,
  [class*="col-"].col-1,
  [class*="col-"].col-auto,
  .column.col-12,
  .column.col-11,
  .column.col-10,
  .column.col-9,
  .column.col-8,
  .column.col-7,
  .column.col-6,
  .column.col-5,
  .column.col-4,
  .column.col-3,
  .column.col-2,
  .column.col-1,
  .column.col-auto {
    flex: none;
  }
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66666667%;
}
.col-10 {
  width: 83.33333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66666667%;
}
.col-7 {
  width: 58.33333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66666667%;
}
.col-4 {
  width: 33.33333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.66666667%;
}
.col-1 {
  width: 8.33333333%;
}
.col-auto {
  flex: 0 0 auto;
  max-width: none;
  width: auto;
}
.col-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.col-ml-auto {
  margin-left: auto;
}
.col-mr-auto {
  margin-right: auto;
}
/* 見出し */
.heading {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em
}
.heading .en {
    display: block;
    margin-bottom: 5px;
    color: #004898;
    font-family: "Jost", sans-serif;
    font-size: 3.6rem;
    letter-spacing: 0.075em;
  }
.heading span.en {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
  }
.heading2 {
  margin-top: 20px;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 2rem
}
.heading2 .en {
    color: #004898;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
  }
.h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
.h3-bg {
  padding: 0.4em 0.75em;
  border-radius: 6px;
  background: #004898;
  color: #fff;
  letter-spacing: 0.1em;
}
.en {
  font-family: "Jost", sans-serif;
  font-weight: normal;
}
.lead {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
/* リスト */
.list-none {
  list-style: none;
  padding: 0;
}
/* HR */
hr {
  margin: 40px 0;
  border-top: 1px solid #dcdddd
}
hr.condensed {
    margin: 30px 0;
  }
/*------------------------------------*\
    Tables
\*------------------------------------*/
.table {
  width: 100%
}
.table th,
  .table td {
    padding: 0.5em 1em;
    border-bottom: 1px solid #d9dada;
    vertical-align: top;
  }
.table tbody th {
    padding-left: 0;
    font-weight: normal;
    text-align: left;
  }
/* レスポンシブ */
.company-table {
  width: 100%
}
.company-table th,
  .company-table td {
    padding: 1em 0;
    border-top: 1px solid #dcdddd;
    vertical-align: top;
  }
.company-table th {
    font-weight: bold;
    text-align: left
  }
.company-table th span {
      display: inline-block;
      position: relative;
      padding-left: 1em
    }
.company-table th span::before {
        content: "";
        position: absolute;
        top: 0.2em;
        bottom: 0.2em;
        left: 0;
        border-left: 2px solid #004898;
      }
.company-table td {
    padding-left: 1em;
  }
.company-table tr:first-child th,
    .company-table tr:first-child td {
      border-top: none;
    }
.company-table a {
    font-weight: bold
  }
.company-table a .icon {
      display: inline-block;
      margin-right: 2px;
      vertical-align: -0.1em;
    }
/* Project
   ----------------------------------------------------------------- */
/*------------------------------------*\
    共通
\*------------------------------------*/

/* リンク */
.link-block {
  color: #282828 !important;
  text-decoration: none;
}
.hover-scale {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hover-scale img {
  transition: all 0.4s ease-out;
}
.hover-scale:hover img,
a:hover .hover-scale img {
  transform: scale(1.1);
}
.hover-fade {
  transition: all 0.4s ease-out;
}
.hover-fade:hover {
  opacity: 0.6;
}
/* image */
.full-image {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw
}
.full-image img {
    width: 100%;
  }
/* Utility
   ----------------------------------------------------------------- */
/* Responsive */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  outline: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Text Align & Font style */
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-vertical-top {
  vertical-align: top;
}
.u-vertical-middle {
  vertical-align: middle;
}
.u-vertical-bottom {
  vertical-align: bottom;
}
.u-text-muted {
  color: #b2b5b5;
}
/* widths */
.u-w100 {
  width: 100%;
}
.u-w90 {
  width: 90%;
}
.u-w80 {
  width: 80%;
}
.u-w75 {
  width: 75%;
}
.u-w70 {
  width: 70%;
}
.u-w66 {
  width: 66%;
}
.u-w60 {
  width: 60%;
}
.u-w50 {
  width: 50%;
}
.u-w40 {
  width: 40%;
}
.u-w33 {
  width: 33%;
}
.u-w30 {
  width: 30%;
}
.u-w25 {
  width: 25%;
}
.u-w20 {
  width: 20%;
}
.u-w10 {
  width: 10%;
}
.u-w-auto {
  width: auto;
}
/* Margins */
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-mt-1 {
  margin-top: 10px !important;
}
.u-mr-1 {
  margin-right: 10px !important;
}
.u-mb-1 {
  margin-bottom: 10px !important;
}
.u-ml-1 {
  margin-left: 10px !important;
}
.u-mt-2 {
  margin-top: 20px !important;
}
.u-mr-2 {
  margin-right: 20px !important;
}
.u-mb-2 {
  margin-bottom: 20px !important;
}
.u-ml-2 {
  margin-left: 20px !important;
}
.u-mt-3 {
  margin-top: 40px !important;
}
.u-mr-3 {
  margin-right: 40px !important;
}
.u-mb-3 {
  margin-bottom: 40px !important;
}
.u-ml-3 {
  margin-left: 40px !important;
}
.u-mt-4 {
  margin-top: 60px !important;
}
.u-mr-4 {
  margin-right: 60px !important;
}
.u-mb-4 {
  margin-bottom: 60px !important;
}
.u-ml-4 {
  margin-left: 60px !important;
}
.u-mt-5 {
  margin-top: 100px !important;
}
.u-mr-5 {
  margin-right: 100px !important;
}
.u-mb-5 {
  margin-bottom: 100px !important;
}
.u-ml-5 {
  margin-left: 100px !important;
}
.u-mr-auto,
.u-mx-auto {
  margin-right: auto !important;
}
.u-ml-auto,
.u-mx-auto {
  margin-left: auto !important;
}
/* Paddings */
.u-p-0 {
  padding-top: 0 !important;
}
.u-pt-0 {
  padding-top: 0 !important;
}
.u-pb-0 {
  padding-bottom: 0 !important;
}
/* Text Styles */
.u-bold {
  font-weight: bold;
}
.u-normal {
  font-weight: 400;
}
.u-font-l {
  font-size: 2.4rem;
}
.u-font-m {
  font-size: 1.8rem;
}
.u-font-s {
  font-size: 1.3rem;
}
/* Colors */
.bg-gray {
  background: #f6f6f6;
}
.bg-white {
  background: #fff;
}
.c-white {
  color: #fff !important;
}
.c-primary {
  color: #004898;
}
@media (max-width: 30em) {
}
@media (min-width: 30.001em) {
  .col-sm-12,
  .col-sm-11,
  .col-sm-10,
  .col-sm-9,
  .col-sm-8,
  .col-sm-7,
  .col-sm-6,
  .col-sm-5,
  .col-sm-4,
  .col-sm-3,
  .col-sm-2,
  .col-sm-1,
  .col-sm-auto {
    flex: none;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-auto {
    width: auto;
  }
  .hide-sm {
    display: none !important;
  }
  .show-sm {
    display: block !important;
  }
  .u-sm-none {
    display: none !important;
  }
  .u-sm-block {
    display: block !important;
  }
  .u-sm-inline {
    display: inline !important;
  }
  .u-sm-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 45em) {
  .table th,
  .table td {
    padding: 1em;
  }
  .table-scroller {
    display: block;
    width: 100%;
    overflow-x: auto
  }

    .table-scroller table {
      margin-bottom: 4px;
    }
    .table-scroller td,
    .table-scroller th {
      border: 1px solid #ccc;
      white-space: nowrap;
    }
  .company-table {
    display: block;
    width: 100%
  }
    .company-table tbody,
    .company-table tr,
    .company-table th,
    .company-table td {
      display: block;
      width: 100%;
    }
    .company-table th {
      padding-bottom: 0.5em;
    }
    .company-table td {
      padding-top: 0;
      border-top: none;
    }
  .recruit-table {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc
  }
    .recruit-table tbody,
    .recruit-table tr,
    .recruit-table th,
    .recruit-table td {
      display: block;
      width: 100%;
    }
    .recruit-table td {
      border-top: none;
    }
}
@media (min-width: 45.001em) {
  .footer__inner {
    display: flex;
  }
  .footer__main {
    flex: 1 0 auto;
  }
  .footer__navi {
    display: flex;
    flex: 1 0 230px;
    max-width: 230px;
  }
  .col-md-12,
  .col-md-11,
  .col-md-10,
  .col-md-9,
  .col-md-8,
  .col-md-7,
  .col-md-6,
  .col-md-5,
  .col-md-4,
  .col-md-3,
  .col-md-2,
  .col-md-1,
  .col-md-auto {
    flex: none;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-auto {
    width: auto;
  }
  .hide-md {
    display: none !important;
  }
  .show-md {
    display: block !important;
  }
}
@media (min-width: 60.001em) {
  .wrap {
    padding-top: 130px;
  }
  .header {
    display: flex;
    flex-direction: column;
    height: 130px;
  }
  .cols,
  .columns {
    margin-left: -30px;
    margin-right: -30px;
  }
  [class*="col-"],
  .column {
    padding-left: 30px;
    padding-right: 30px;
  }
  .col-lg-12,
  .col-lg-11,
  .col-lg-10,
  .col-lg-9,
  .col-lg-8,
  .col-lg-7,
  .col-lg-6,
  .col-lg-5,
  .col-lg-4,
  .col-lg-3,
  .col-lg-2,
  .col-lg-1,
  .col-lg-auto {
    flex: none;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-auto {
    width: auto;
  }
  .hide-lg {
    display: none !important;
  }
  .show-lg {
    display: block !important;
  }
  .heading {
    margin-bottom: 20px
  }
    .heading .en {
      font-size: 4.5rem;
    }
  .heading2 {
    font-size: 2.5rem;
  }
  .h3 {
    font-size: 2rem;
  }
  hr {
    margin: 80px 0
  }
    hr.condensed {
      margin: 40px 0;
    }
  .btn1 {
    height: 70px;
    padding: 10px 30px;
    border-radius: 35px;
    transition: all 0.3s ease-out;
  }
  .btn1:hover {
    background: #004898;
    color: #fff;
  }
    .table th,
    .table td {
      padding: 1em;
    }
    .page-navi li {
      width: 25%;
    }
  .times-title {
    font-size: 1.6rem;
  }
    .pickup .times-title {
      font-size: 2.5rem;
    }
    .times-more__btn .icon {
      font-size: 62px;
    }
  .u-lg-none {
    display: none !important;
  }
  .u-lg-block {
    display: block !important;
  }
  .u-lg-inline {
    display: inline !important;
  }
  .u-lg-inline-block {
    display: inline-block !important;
  }
  .u-mt-1 {
    margin-top: 15px !important;
  }
  .u-mr-1 {
    margin-right: 15px !important;
  }
  .u-mb-1 {
    margin-bottom: 15px !important;
  }
  .u-ml-1 {
    margin-left: 15px !important;
  }
  .u-mt-2 {
    margin-top: 40px !important;
  }
  .u-mr-2 {
    margin-right: 40px !important;
  }
  .u-mb-2 {
    margin-bottom: 40px !important;
  }
  .u-ml-2 {
    margin-left: 40px !important;
  }
  .u-mt-3 {
    margin-top: 60px !important;
  }
  .u-mr-3 {
    margin-right: 60px !important;
  }
  .u-mb-3 {
    margin-bottom: 60px !important;
  }
  .u-ml-3 {
    margin-left: 60px !important;
  }
  .u-mt-4 {
    margin-top: 80px !important;
  }
  .u-mr-4 {
    margin-right: 80px !important;
  }
  .u-mb-4 {
    margin-bottom: 80px !important;
  }
  .u-ml-4 {
    margin-left: 80px !important;
  }
  .u-mt-5 {
    margin-top: 200px !important;
  }
  .u-mr-5 {
    margin-right: 200px !important;
  }
  .u-mb-5 {
    margin-bottom: 200px !important;
  }
  .u-ml-5 {
    margin-left: 200px !important;
  }
}
@media (min-width: 75.001em) {
}
@media (min-width: 40.001em) {
  .u-md-none {
    display: none !important;
  }
  .u-md-block {
    display: block !important;
  }
  .u-md-inline {
    display: inline !important;
  }
  .u-md-inline-block {
    display: inline-block !important;
  }
}
