@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

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

body {
  color: #483b35;
  background: #faf2e8;
  margin: 0px;
  font-family: "Zen Maru Gothic", 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.8rem;
  font-weight: 500;
  padding: 0px !important;
}

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: #483b35;
  text-decoration: underline;
}
a:hover {
  color: #483b35;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  z-index: 100;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  padding: 0px 15px;
  background: #faf2e8;
}
@media (min-width: 992px) {
  #header {
    padding: 0px 30px;
    height: 100px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 120px;
    padding: 0px 30px;
  }
}
#header #logo {
  display: block;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  width: 280px;
}
@media (min-width: 992px) {
  #header #logo {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 360px;
  }
}
@media (min-width: 1300px) {
  #header #logo {
    width: 420px;
  }
}
@media (min-width: 1400px) {
  #header #logo {
    width: 502px;
  }
}
#header #logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header #header-Right {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#header #header-Right #subNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.2rem;
}
@media (min-width: 1400px) {
  #header #header-Right #subNavi {
    margin-bottom: 1.6rem;
  }
}
#header #contactButton {
  display: none;
}
@media (min-width: 992px) {
  #header #contactButton {
    display: block;
    margin-left: 1.5rem;
  }
  #header #contactButton a {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-weight: 900;
    background: #82ade2;
    height: 36px;
    width: 210px;
    -webkit-transition: all 600ms 0s ease;
    transition: all 600ms 0s ease;
    text-decoration: none;
    font-size: 1.8rem;
    border-radius: 20px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #contactButton a {
    height: 40px;
    width: 240px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 18px;
    margin-right: 0.7rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #contactButton a img {
    width: 22px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a:hover, #header #contactButton a.active a {
    background: #6a97ce;
  }
}
#header #recruitButton {
  display: none;
}
@media (min-width: 992px) {
  #header #recruitButton {
    display: block;
    margin-left: 2.4rem;
  }
  #header #recruitButton a {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 700;
    height: 36px;
    width: 110px;
    -webkit-transition: all 600ms 0s ease;
    transition: all 600ms 0s ease;
    text-decoration: none;
    font-size: 1.8rem;
    border-radius: 20px;
    background: #483b35;
    color: #fff;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #recruitButton a {
    height: 40px;
    width: 140px;
  }
}
@media (min-width: 992px) {
  #header #recruitButton a:hover, #header #recruitButton a.active a {
    background: #fff;
    color: #483b35;
  }
}
#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;
  }
}
#header #mainNavi > li {
  display: block;
  margin-left: 2rem;
}
@media (min-width: 1200px) {
  #header #mainNavi > li {
    margin-left: 3rem;
  }
}
#header #mainNavi > li > a {
  text-decoration: none;
  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;
  line-height: 1;
  position: relative;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  white-space: nowrap;
  padding: 0px 0px 0.1em 1.6rem;
}
@media (min-width: 1200px) {
  #header #mainNavi > li > a {
    font-size: 1.8rem;
    padding: 0px 0px 0.1em 2rem;
  }
}
#header #mainNavi > li > a:before {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  aspect-ratio: 1;
  content: "";
  display: block;
  background: #82ade2;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  border-radius: 50%;
  margin-right: 0.8rem;
}
#header #mainNavi li.active a:before,
#header #mainNavi li a:hover:before {
  width: 10px;
  -webkit-box-shadow: 0px 0px 0px 3px #faf2e8, 0px 0px 0px 5px #82ade2;
          box-shadow: 0px 0px 0px 3px #faf2e8, 0px 0px 0px 5px #82ade2;
}
#header.on {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on {
    height: 100px;
  }
}
#header.on #mainNavi a {
  font-size: 1.6rem;
}
#header.on #header-Right #subNavi {
  margin-bottom: 1.2rem;
}

.dropdown {
  position: relative;
}
.dropdown:after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 76%);
  background: #000;
  width: 8px;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 4px);
  right: 4px;
}

.dropdown-toggle {
  padding-right: 24px !important;
  position: relative;
}
.dropdown-toggle:before {
  position: absolute;
  right: 8px;
  top: 50%;
}
.dropdown-toggle {
  /* ホバー開閉時にフォーカスで出る枠を非表示 */
}
.dropdown-toggle:focus, .dropdown-toggle.show:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.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:before {
  content: "";
  display: block;
  background: url(../images/icon_arrow.png) no-repeat center;
  position: absolute;
  top: 1.6rem;
}

.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: #faf2e8;
  -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: -360px;
    width: 360px;
  }
}
.side-open #sidebar {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: #483b35;
  line-height: 1.2;
  padding: 20px 10px 20px 10px;
  position: relative;
  display: block;
  border-bottom: dashed 1px #5f5f5f;
  font-weight: 500;
  font-size: 18px;
  padding-left: 3.6rem;
}
#sidebar .list-sidenav > li > a:before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1;
  background: #82ade2;
  border-radius: 50%;
  position: absolute;
  top: 52%;
  left: 0.8rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  font-weight: 700;
  color: #6A80D1;
}
#sidebar .list-sidenav > li.active > a::before,
#sidebar .list-sidenav > li > a:hover:before {
  -webkit-box-shadow: 0px 0px 0px 3px #faf2e8, 0px 0px 0px 5px #82ade2;
          box-shadow: 0px 0px 0px 3px #faf2e8, 0px 0px 0px 5px #82ade2;
}
#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;
  -webkit-transform: translate(0, -50%);
          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;
}

#sidebarContact {
  width: 100%;
  background: #483b35 url(../images/bg_btn.jpg) no-repeat center/100% auto;
  color: #fff;
  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-weight: 500;
  padding: 0px 15px;
  height: 56px;
  font-size: 20px;
  border-radius: 28px;
}
#sidebarContact img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
  width: 2.4rem;
  height: auto;
}
#sidebarContact:hover {
  opacity: 0.9;
}

#sidebarTel {
  font-weight: 700;
  font-size: 7.2vw;
  color: #6A80D1;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  #sidebarTel {
    font-size: 3.6rem;
  }
}
#sidebarTel .time {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #483B35;
}

/* -------------------------------
          オーバーレイ
      -------------------------------- */
.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);
}

/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 15px;
  top: 10px;
  width: 40px;
  height: 40px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
}
@media (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

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

#menuButton {
  border-radius: 4px;
  background: #483b35;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  -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%;
}
#footer #footerBody {
  width: 100%;
  padding: 60px 0px;
  border-top: dashed 1px #483b35;
  font-weight: 700;
}
#footer #footerBody a {
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 90px 0px;
  }
}
#footer #footerBody .footerLeft {
  text-align: center;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 70vw;
  text-align: center;
  margin: 0px auto;
}
@media (min-width: 576px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 380px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    text-align: left;
    margin: initial;
  }
}
#footer #footerBody .footerLeft .mapPin {
  width: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-filter: invert(22%) sepia(36%) saturate(274%) hue-rotate(334deg) brightness(89%) contrast(90%);
          filter: invert(22%) sepia(36%) saturate(274%) hue-rotate(334deg) brightness(89%) contrast(90%);
  margin-left: 0.4rem;
}
#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;
  color: #82ade2;
}
#footer #footerBody .footerLeft .f-tel .num {
  font-size: 3rem;
  color: #6a80d1;
  margin-right: 0.2em;
}
#footer #footerBody .footerRight #textLink {
  display: none;
}
@media (min-width: 768px) {
  #footer #footerBody .footerRight #textLink {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#footer #footerBody .footerRight #textLink li {
  padding-left: 1em;
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
#footer #footerBody .footerRight #textLink li:before {
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1;
  background: #82ade2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer #copy {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  padding: 0.8em 0px;
}

#pagetop {
  right: 15px;
  bottom: 15px;
  z-index: 20;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media (min-width: 992px) {
  #pagetop {
    -webkit-transform: scale(1);
            transform: scale(1);
    bottom: 30px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  width: 100%;
  margin-top: 60px;
  padding: 0px 2% 4% 2%;
  overflow: hidden;
}
@media (min-width: 992px) {
  #sliderWrap {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  #sliderWrap {
    margin-top: 120px;
  }
}
#sliderWrap .img01 {
  position: absolute;
  z-index: 4;
  width: 20%;
  top: 0;
  left: 1%;
}
@media (min-width: 992px) {
  #sliderWrap .img01 {
    top: 0;
    left: 1%;
    width: 10%;
  }
}
#sliderWrap .img02 {
  position: absolute;
  z-index: 2;
  width: 45%;
  top: 0;
  right: -6%;
}
@media (min-width: 992px) {
  #sliderWrap .img02 {
    width: 22.4%;
    top: 0;
    right: 0;
  }
}
#sliderWrap .img03 {
  position: absolute;
  bottom: 0;
  left: -8%;
  z-index: 1;
  width: 52%;
}
@media (min-width: 992px) {
  #sliderWrap .img03 {
    width: 26%;
    bottom: 0;
    left: -8%;
  }
}
#sliderWrap .img04 {
  position: absolute;
  bottom: 0;
  right: -4%;
  width: 16%;
  z-index: 5;
}
@media (min-width: 992px) {
  #sliderWrap .img04 {
    width: 16%;
    bottom: 0;
    right: 1%;
  }
}
#sliderWrap #catch {
  position: absolute;
  z-index: 10;
  width: 80vw;
  bottom: 5%;
  right: 30px;
}
@media (min-width: 576px) {
  #sliderWrap #catch {
    bottom: 10%;
  }
}
@media (min-width: 768px) {
  #sliderWrap #catch {
    width: 65vw;
  }
}
@media (min-width: 1200px) {
  #sliderWrap #catch {
    width: 1100px;
    bottom: 20%;
    right: 60px;
  }
}
@media (min-width: 1300px) {
  #sliderWrap #catch {
    width: 1173px;
  }
}

#mainSlider {
  width: 100%;
  position: relative;
  z-index: 3;
  -webkit-mask-image: url(../images/mask_slider.svg);
          mask-image: url(../images/mask_slider.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
#mainSlider li:nth-child(1) img {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(1) img {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
@media (min-width: 992px) {
  #mainSlider li:nth-child(1) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#mainSlider li:nth-child(2) img {
  -webkit-transform: translateX(-15%);
          transform: translateX(-15%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(2) img {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@media (min-width: 1200px) {
  #mainSlider li:nth-child(2) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#mainSlider li:nth-child(3) img {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}
@media (min-width: 576px) {
  #mainSlider li:nth-child(3) img {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
}
@media (min-width: 992px) {
  #mainSlider li:nth-child(3) img {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@media (min-width: 1200px) {
  #mainSlider li:nth-child(3) img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#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 {
  /* before要素 */
}
#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%;
  }
}

.contact-Wrap {
  background: url(../images/mask_content.svg) no-repeat center/150% 100%;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  .contact-Wrap {
    background: url(../images/mask_content.svg) no-repeat center/100% 100%;
    padding: 90px 0px;
  }
}
.contact-Wrap .contact-Tel {
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  max-width: 480px;
  width: 100%;
  background: #fff;
  height: 68px;
  border-radius: 44px;
}
@media (min-width: 992px) {
  .contact-Wrap .contact-Tel {
    height: 86px;
  }
}
.contact-Wrap .contact-Tel a {
  text-decoration: none;
}
.contact-Wrap .contact-Tel .num {
  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;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.contact-Wrap .contact-Tel .num img {
  width: 28px;
  margin-top: 1rem;
  margin-right: 0.82rem;
  -webkit-filter: invert(49%) sepia(44%) saturate(604%) hue-rotate(190deg) brightness(95%) contrast(85%);
          filter: invert(49%) sepia(44%) saturate(604%) hue-rotate(190deg) brightness(95%) contrast(85%);
}
@media (min-width: 992px) {
  .contact-Wrap .contact-Tel .num img {
    width: 36px;
    margin-top: 1rem;
    margin-right: 1.2rem;
  }
}
.contact-Wrap .contact-Tel .time {
  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;
  line-height: 1;
  width: 280px;
  height: 18px;
  text-align: center;
  background: #82ade2;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .contact-Wrap .contact-Tel .time {
    height: 22px;
  }
}
.contact-Wrap .contact-Mail {
  max-width: 480px;
  width: 100%;
  background: #6a80d1;
  color: #fff;
  height: 68px;
  border-radius: 44px;
  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;
  font-size: 2.8rem;
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
@media (min-width: 992px) {
  .contact-Wrap .contact-Mail {
    height: 86px;
  }
}
.contact-Wrap .contact-Mail:hover {
  background: #556fcc;
}
.contact-Wrap .contact-Mail img {
  width: 32px;
  margin-right: 1.2rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.decoration-Image {
  position: relative;
}
.decoration-Image .img {
  position: relative;
  z-index: 2;
}
.decoration-Image:after {
  position: absolute;
  top: 0px;
  right: 0px;
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 600/400;
  z-index: 1;
}
.decoration-Image.right:after {
  background: url(../images/bg_image-right.png) no-repeat center/100% 100%;
  -webkit-transform: translate(7%, 5%);
          transform: translate(7%, 5%);
}
.decoration-Image.left:after {
  background: url(../images/bg_image-left.png) no-repeat center/100% 100%;
  -webkit-transform: translate(-7%, 5%);
          transform: translate(-7%, 5%);
}
.decoration-Image .about-decoration01 {
  position: absolute;
  right: -5%;
  bottom: -3%;
  z-index: 3;
  width: 30%;
}
@media (min-width: 1200px) {
  .decoration-Image .about-decoration01 {
    right: -10%;
    bottom: -30%;
    width: auto;
  }
}
.decoration-Image .service-decoration01 {
  position: absolute;
  right: -5%;
  bottom: -5%;
  z-index: 3;
  width: 15%;
}
@media (min-width: 768px) {
  .decoration-Image .service-decoration01 {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .decoration-Image .service-decoration01 {
    right: -5%;
    bottom: -5%;
  }
}
.decoration-Image .service-decoration00 {
  position: absolute;
  right: -5%;
  top: -3%;
  z-index: 3;
  width: 30%;
}
@media (min-width: 1200px) {
  .decoration-Image .service-decoration00 {
    right: -10%;
    top: -30%;
    width: auto;
  }
}
.decoration-Image .recruit-decoration01 {
  position: absolute;
  right: -5%;
  bottom: -3%;
  z-index: 3;
  width: 20%;
}
@media (min-width: 1200px) {
  .decoration-Image .recruit-decoration01 {
    right: -5%;
    bottom: -25%;
    width: auto;
  }
}

.curve-Wrap {
  background: url(../images/mask_content.svg) no-repeat center/150% 100%;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  .curve-Wrap {
    background: url(../images/mask_content.svg) no-repeat center/100% 100%;
    padding: 120px 0px;
  }
}

.news-overWrap {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  margin-top: -30px;
  position: relative;
}
@media (min-width: 992px) {
  .news-overWrap {
    padding: 60px;
    border-radius: 32px;
    margin-top: -90px;
  }
}
.news-overWrap .news-decoration01 {
  position: absolute;
  right: 2%;
  top: -2%;
  width: 35%;
}
@media (min-width: 576px) {
  .news-overWrap .news-decoration01 {
    right: 15px;
    top: -15px;
    width: 30%;
  }
}
@media (min-width: 992px) {
  .news-overWrap .news-decoration01 {
    width: auto;
  }
}

.news-Wrap {
  width: 100%;
  height: 380px;
  overflow-y: scroll;
  scrollbar-color: #555 #e0ebeb;
  scrollbar-width: thin;
  padding-right: 3rem;
}
.news-Wrap::-webkit-scrollbar {
  width: 6px;
  background-color: #555;
}
.news-Wrap:-webkit-scrollbar-thumb {
  background: #e0ebeb;
  width: 8px;
  border-radius: 0;
}

.news-table {
  width: 100%;
  border-top: none;
}
@media (min-width: 992px) {
  .news-table {
    border-top: solid 1px #ccc;
  }
}
.news-table th,
.news-table td {
  display: block;
}
@media (min-width: 992px) {
  .news-table th,
  .news-table td {
    display: table-cell;
  }
}
.news-table th {
  width: 100%;
  border-bottom: solid 1px #333;
  padding: 15px 0px;
}
@media (min-width: 992px) {
  .news-table th {
    border-bottom: solid 1px #ccc;
    width: 15%;
    padding: 30px 0px;
  }
}
.news-table th div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-table td {
  width: 100%;
  border-bottom: none;
  padding: 15px 0px 30px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .news-table td {
    padding: 30px 0px 30px 40px;
    width: auto;
    border-bottom: solid 1px #ccc;
  }
}
.news-table td a {
  display: block;
  padding: 0px 50px 0px 0px;
  background: url(../images/icon_arrow.svg) no-repeat right 8px center/30px 30px;
}
.news-table .date {
  display: inline-block;
  font-weight: 700;
  margin-right: 2rem;
}
.news-table .icon-New {
  width: 74px;
  height: 20px;
  border: solid 1px #e73939;
  border-radius: 4px;
  color: #e73939;
  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;
  padding-bottom: 0.1rem;
  font-size: 1.4rem;
}

.recruti-Wrap {
  padding: 40vw 0px 0px;
  position: relative;
}
@media (min-width: 768px) {
  .recruti-Wrap {
    padding: 30vw 0px 0px;
  }
}
@media (min-width: 1200px) {
  .recruti-Wrap {
    padding: 310px 0px 0px;
  }
}
.recruti-Wrap:after {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bg_recruit.jpg) no-repeat center/100%;
  -webkit-mask: url(../images/mask_content.svg) no-repeat center/100% 100%;
          mask: url(../images/mask_content.svg) no-repeat center/100% 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  aspect-ratio: 2000/1200;
}
@media (min-width: 768px) {
  .recruti-Wrap:after {
    aspect-ratio: 2000/900;
  }
}
@media (min-width: 1200px) {
  .recruti-Wrap:after {
    aspect-ratio: 2000/690;
  }
}
.recruti-Wrap .recruitBox {
  background: #fff;
  padding: 30px 15px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .recruti-Wrap .recruitBox {
    padding: 30px 0px;
    border-radius: 24px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * news_detail.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.slick-slider {
  overflow: hidden;
}

.caption {
  position: absolute;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  visibility: visible;
  width: 100%;
  left: 0px;
  bottom: 0px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.slick-slide > div > div {
  position: relative;
}

.thumb .slick-slide {
  padding: 0px 5px;
}
.thumb .slick-slide img {
  cursor: pointer;
}

.gallery img {
  cursor: pointer;
}

.text-Box {
  border-radius: 16px;
  background: #fff;
  padding: 15px;
  width: 100%;
}
@media (min-width: 992px) {
  .text-Box {
    padding: 30px;
  }
}

.attachedButton {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #454545;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 48px 8px 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 24px;
  text-decoration: none;
}
.attachedButton:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_dot.png) no-repeat center/contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.attachedButton:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.attachedButton:hover {
  border: solid 1px #454545;
  background: #fff;
  color: #454545;
  text-decoration: none;
}
.attachedButton:hover:before {
  -webkit-filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
          filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton:hover:after {
  -webkit-filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
          filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton.pdf {
  background: #ba3434;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.pdf::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_pdf.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:hover {
  border: solid 1px #ba3434;
}
.attachedButton.pdf:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.pdf:hover:after {
  -webkit-filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
  filter: invert(28%) sepia(32%) saturate(2835%) hue-rotate(332deg) brightness(87%) contrast(87%);
}
.attachedButton.excel {
  background: #3c6e3e;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.excel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_excel.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.excel:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.excel:hover {
  border: solid 1px #3c6e3e;
}
.attachedButton.excel:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.excel:hover:after {
  -webkit-filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
  filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
}
.attachedButton.word {
  background: #2e3d7f;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.word::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_word.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.word:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.attachedButton.word:hover {
  border: solid 1px #2e3d7f;
}
.attachedButton.word:hover:before {
  -webkit-filter: none;
  filter: none;
}
.attachedButton.word:hover:after {
  -webkit-filter: invert(20%) sepia(97%) saturate(645%) hue-rotate(198deg) brightness(92%) contrast(95%);
  filter: invert(20%) sepia(97%) saturate(645%) hue-rotate(198deg) brightness(92%) contrast(95%);
}
.attachedButton.pdf:hover {
  background: #fff;
  color: #a53434;
}
.attachedButton.excel:hover {
  background: #fff;
  color: #3c6e3e;
}
.attachedButton.word:hover {
  background: #fff;
  color: #2e3d7f;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.about-Wrap {
  width: 100%;
  background: url(../images/p02_greeting.jpg) no-repeat center/cover;
  padding: 60px 0px;
  -webkit-mask: url(../images/mask_content.svg) no-repeat center/100% 100%;
          mask: url(../images/mask_content.svg) no-repeat center/100% 100%;
}
@media (min-width: 992px) {
  .about-Wrap {
    padding: 90px 0px;
  }
}

.responsiveTable-Arrow {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 15px;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow {
    width: 100%;
    display: table;
  }
}
.responsiveTable-Arrow th {
  width: 100%;
  color: #fff;
  padding: 7px 15px;
  font-weight: 700;
  display: block;
  line-height: 1;
  border-radius: 8px 8px 0px 0px;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow th {
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    padding: 25px 25px;
    text-align: left;
    position: relative;
    border-radius: 8px 0px 0px 8px;
  }
  .responsiveTable-Arrow th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-width: 10px;
    margin-top: -10px;
  }
}
.responsiveTable-Arrow td {
  width: 100%;
  padding: 15px 15px;
  line-height: 1.8;
  display: block;
  color: #333;
  background: #fff;
  border-radius: 0px 0px 8px 8px;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow td {
    border-radius: 0px 8px 8px 0px;
    padding: 25px 25px 25px 35px;
    display: table-cell;
  }
}
.responsiveTable-Arrow.blue th {
  background: #82ade2;
}
.responsiveTable-Arrow.blue th:after {
  border-left-color: #82ade2;
}
.responsiveTable-Arrow.blue td {
  color: #314657;
}
.responsiveTable-Arrow.brown th {
  background: #c9a89b;
}
.responsiveTable-Arrow.brown th:after {
  border-left-color: #c9a89b;
}
.responsiveTable-Arrow.green th {
  background: #9bc9a5;
}
.responsiveTable-Arrow.green th:after {
  border-left-color: #9bc9a5;
}
.responsiveTable-Arrow.green td {
  color: #2b413d;
}

.qa-all .qa-set {
  margin-bottom: 30px;
}
.qa-all .q-box {
  background: #6a80d1;
  color: #fff;
  padding: 20px 50px;
  position: relative;
  margin-bottom: 15px;
  border-radius: 16px;
  text-align: justify;
}
.qa-all .q-box:before {
  content: "Q";
  position: absolute;
  top: calc(50% - 24px);
  left: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.qa-all .q-box:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff url(../images/icon_arrow_down.svg) no-repeat center/12px 12px;
}
.qa-all .q-box:hover {
  cursor: pointer;
}
.qa-all .q-open:after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.qa-all .a-box {
  background-color: #fff;
  padding: 20px 50px;
  display: none;
  border-radius: 16px;
  text-align: justify;
}

.flow-Wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(1px 1px 3px rgba(51, 51, 51, 0.2));
          filter: drop-shadow(1px 1px 3px rgba(51, 51, 51, 0.2));
  position: relative;
}
.flow-Wrap dl:after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: #82ADE2;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  position: absolute;
  bottom: -24px;
  left: 12.5%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .flow-Wrap dl:after {
    left: 10%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.flow-Wrap dl:last-child:after {
  display: none;
  margin-bottom: 0px;
}
.flow-Wrap dt {
  color: #fff;
  font-family: "Barlow", sans-serif;
  padding: 5px 0px;
  width: 25%;
  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;
  border-radius: 16px 0px 0px 16px;
}
@media (min-width: 768px) {
  .flow-Wrap dt {
    width: 20%;
  }
}
.flow-Wrap dd {
  background: #fff;
  padding: 25px 25px;
  width: 75%;
  line-height: 1.4;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0px 16px 16px 0px;
}
@media (min-width: 768px) {
  .flow-Wrap dd {
    width: 80%;
  }
}
.flow-Wrap.lightBlue dt {
  background: #82ade2;
}
.flow-Wrap.lightBlue dd {
  color: #483b35;
}
.flow-Wrap.blue dt {
  background: #6a80d1;
}
.flow-Wrap.blue dd {
  color: #483b35;
}

/*-------------------------------------------------------------------------------------------*
 *
 * works.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #82ade2;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.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;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contact-Tel2 {
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  max-width: 580px;
  width: 100%;
  background: #fff;
  height: 100px;
  border-radius: 60px;
}
@media (min-width: 992px) {
  .contact-Tel2 {
    height: 120px;
  }
}
.contact-Tel2 a {
  text-decoration: none;
}
.contact-Tel2 .num {
  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;
  font-size: 10vw;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contact-Tel2 .num {
    font-size: 4.8rem;
  }
}
@media (min-width: 1200px) {
  .contact-Tel2 .num {
    font-size: 5.6rem;
  }
}
.contact-Tel2 .num img {
  width: 8vw;
  margin-top: 1rem;
  margin-right: 0.82rem;
  -webkit-filter: invert(49%) sepia(44%) saturate(604%) hue-rotate(190deg) brightness(95%) contrast(85%);
          filter: invert(49%) sepia(44%) saturate(604%) hue-rotate(190deg) brightness(95%) contrast(85%);
}
@media (min-width: 576px) {
  .contact-Tel2 .num img {
    width: 36px;
  }
}
@media (min-width: 992px) {
  .contact-Tel2 .num img {
    width: 42px;
    margin-top: 1rem;
    margin-right: 1.2rem;
  }
}
.contact-Tel2 .time {
  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;
  line-height: 1;
  width: 80%;
  max-width: 280px;
  text-align: center;
  background: #82ade2;
  color: #fff;
  font-size: 4vw;
  border-radius: 1.5rem;
  padding-bottom: 0.1em;
  height: 6vw;
}
@media (min-width: 576px) {
  .contact-Tel2 .time {
    font-size: 1.8rem;
    height: 3rem;
  }
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 20px 20px 20px 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: 20px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.8rem;
  padding: 1rem 1.5rem;
}

@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 20px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
.select-Wrap {
  position: relative;
  display: inline-block;
  width: 80%;
}
@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%;
}

.form15 {
  width: 20%;
  display: inline-block;
}

.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) {
  .form15 {
    width: 15%;
  }
  .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: #6a80d1;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border-radius: 30px;
  border: none;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #5B73CD;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  margin-right: 1.2rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-left: 1.2rem;
}
.formBtn button.formBtn {
  border: none;
  outline: none;
}
.formBtn 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;
  text-align: justify;
}
.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 {
  margin-top: 60px;
  padding: 0px 3% 3%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  #h2Title {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    margin-top: 120px;
  }
}
#h2Title:before {
  content: "";
  display: block;
  width: 24%;
  aspect-ratio: 490/421;
  background: url(../images/slider_img02.png) no-repeat center/100%;
  position: absolute;
  top: 0;
  right: -2%;
  z-index: 1;
}
#h2Title:after {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 480/442;
  background: url(../images/slider_img03.png) no-repeat center/100%;
  position: absolute;
  bottom: 0%;
  left: -2%;
  z-index: 2;
}
#h2Title .inr {
  height: 380px;
  width: 100%;
  -webkit-mask: url(../images/mask_h2title.svg) no-repeat center/100% 100%;
          mask: url(../images/mask_h2title.svg) no-repeat center/100% 100%;
  position: relative;
  z-index: 3;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 15px;
}
@media (min-width: 992px) {
  #h2Title .inr {
    height: 420px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  #h2Title .inr {
    height: 520px;
    padding-left: 40px;
  }
}
@media (min-width: 1400px) {
  #h2Title .inr {
    height: 568px;
    padding-left: 60px;
  }
}
#h2Title.news .inr {
  background: url(../images/bg_h2-news.jpg) no-repeat center right 30%/cover;
}
@media (min-width: 768px) {
  #h2Title.news .inr {
    background: url(../images/bg_h2-news.jpg) no-repeat center/cover;
  }
}
#h2Title.p02 .inr {
  background: url(../images/bg_h2title02.jpg) no-repeat center right 60%/cover;
}
@media (min-width: 768px) {
  #h2Title.p02 .inr {
    background: url(../images/bg_h2title02.jpg) no-repeat center/cover;
  }
}
#h2Title.p03 .inr {
  background: url(../images/bg_h2title03.jpg) no-repeat center/cover;
}
#h2Title.p04 .inr {
  background: url(../images/bg_h2title04.jpg) no-repeat center left 20%/cover;
}
@media (min-width: 768px) {
  #h2Title.p04 .inr {
    background: url(../images/bg_h2title04.jpg) no-repeat center/cover;
  }
}
#h2Title.p05 .inr {
  background: url(../images/bg_h2title05.jpg) no-repeat center/cover;
}
#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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#h2Title h2 .en {
  font-weight: 900;
  font-size: 6.8vw;
  text-align: left;
  color: #483b35;
  background: #faf2e8;
  line-height: 1;
  padding: 0.1em 0.4em 0.2em 0.4em;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    font-size: 4.8rem;
  }
}
#h2Title h2 .ja {
  font-size: 12vw;
  font-weight: 900;
  text-shadow: 4px 4px 0 #FFF, -4px -4px 0 #FFF, -4px 4px 0 #FFF, 4px -4px 0 #FFF, 0px 4px 0 #FFF, 0 -4px 0 #FFF, -4px 0 0 #FFF, 4px 0 0 #FFF;
  line-height: 1;
  color: #F4899E;
}
@media (min-width: 768px) {
  #h2Title h2 .ja {
    font-size: 12rem;
  }
}
#h2Title h2 .ja small {
  font-size: 50%;
  line-height: 1;
}

.title {
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-size: 8.2vw;
}
@media (min-width: 576px) {
  .title {
    font-size: 5.4rem;
  }
}
@media (min-width: 1600px) {
  .title {
    font-size: 6rem;
  }
}
.title em {
  font-style: normal;
}
.title span {
  line-height: 1.4;
  background: url(../images/bg_line.png) repeat-x left bottom/9px;
  padding-bottom: 0.08em;
  display: inline-block;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .title span {
    background: url(../images/bg_line.png) repeat-x left bottom;
  }
}
.title.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0px auto;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}
.title.white .ja:before {
  background: #fff;
}
.title.white .ja:after {
  background: #fff;
}

.subTitle {
  font-size: 5.6vw;
  font-weight: 700;
  position: relative;
  padding-left: 0.8em;
  padding-bottom: 0.15em;
}
@media (min-width: 576px) {
  .subTitle {
    padding-left: 1em;
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .subTitle {
    font-size: 3.6rem;
  }
}
.subTitle:before {
  position: absolute;
  content: "";
  width: 14px;
  aspect-ratio: 1;
  background: #6a80d1;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (min-width: 992px) {
  .subTitle:before {
    width: 18px;
  }
}

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

.read {
  font-size: 5.2vw;
  font-weight: 700;
}
@media (min-width: 576px) {
  .read {
    font-size: 3.2rem;
  }
}

.catalog-Title {
  display: inline-block;
  line-height: 1.2;
  font-weight: 700;
  font-size: 8.2vw;
}
@media (min-width: 576px) {
  .catalog-Title {
    font-size: 5.4rem;
  }
}
@media (min-width: 1600px) {
  .catalog-Title {
    font-size: 6rem;
  }
}
.catalog-Title span {
  background: url(../images/bg_line.png) repeat-x left bottom/9px;
  padding-bottom: 0.3em;
  display: inline-block;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .catalog-Title span {
    background: url(../images/bg_line.png) repeat-x left bottom;
  }
}
.catalog-Title span:first-letter {
  color: #6A80D1;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #6a80d1;
  color: #fff;
  font-weight: 700;
  max-width: 440px;
  width: 100%;
  height: 64px;
  -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: 32px;
  padding: 0px 16px 0px 32px;
  text-decoration: none;
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
  font-size: 2.4rem;
}
.detailBtn span {
  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;
  width: 35px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
}
.detailBtn span img {
  width: 16px;
  height: auto;
  -webkit-filter: invert(48%) sepia(17%) saturate(1347%) hue-rotate(190deg) brightness(102%) contrast(93%);
          filter: invert(48%) sepia(17%) saturate(1347%) hue-rotate(190deg) brightness(102%) contrast(93%);
  -webkit-transition: all 900ms 0s ease;
  transition: all 900ms 0s ease;
}
.detailBtn:hover {
  color: #fff;
  background: #566FCC;
}
.detailBtn:hover span img {
  -webkit-transform: translate(4px, 0);
          transform: translate(4px, 0);
}
.detailBtn.back span img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.vertical-MiddleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.textAline-Justify {
  text-align: justify;
}

.radisu16 {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .radisu16 {
    border-radius: 16px;
  }
}

.w100 {
  width: 100%;
}

.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: 992px) {
  .padding-Left {
    padding-left: 8.1%;
  }
}

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

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

.anchor-news {
  padding-top: 110px;
  margin-top: -110px;
}
@media (min-width: 992px) {
  .anchor-news {
    padding-top: 180px;
    margin-top: -180px;
  }
}

.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: 66.666%;
  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;
}

.lightBlue {
  color: #82ade2;
}

.blue {
  color: #6a80d1;
}

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

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

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

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

.fs-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: 576px) {
  .mt-sm-00 {
    margin-top: 0px;
  }
  .mt-sm-10 {
    margin-top: 10px;
  }
  .mt-sm-20 {
    margin-top: 20px;
  }
  .mt-sm-30 {
    margin-top: 30px;
  }
  .mt-sm-60 {
    margin-top: 60px;
  }
  .mt-sm-90 {
    margin-top: 90px;
  }
}
@media (min-width: 768px) {
  .mt-md-00 {
    margin-top: 0px;
  }
  .mt-md-10 {
    margin-top: 10px;
  }
  .mt-md-20 {
    margin-top: 20px;
  }
  .mt-md-30 {
    margin-top: 30px;
  }
  .mt-md-60 {
    margin-top: 60px;
  }
  .mt-md-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;
  }
}
@media (min-width: 1200px) {
  .mt-xl-00 {
    margin-top: 0px;
  }
  .mt-xl-10 {
    margin-top: 10px;
  }
  .mt-xl-20 {
    margin-top: 20px;
  }
  .mt-xl-30 {
    margin-top: 30px;
  }
  .mt-xl-60 {
    margin-top: 60px;
  }
  .mt-xl-90 {
    margin-top: 90px;
  }
}
@media (min-width: 1400px) {
  .mt-xxl-00 {
    margin-top: 0px;
  }
  .mt-xxl-10 {
    margin-top: 10px;
  }
  .mt-xxl-20 {
    margin-top: 20px;
  }
  .mt-xxl-30 {
    margin-top: 30px;
  }
  .mt-xxl-60 {
    margin-top: 60px;
  }
  .mt-xxl-90 {
    margin-top: 90px;
  }
}
.ml-00 {
  margin-left: 0px !important;
}

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

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

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

@media (min-width: 768px) {
  .ml-md-00 {
    margin-left: 0px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-30 {
    margin-left: 3dvh !important;
  }
}
@media (min-width: 992px) {
  .ml-lg-00 {
    margin-left: 0px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-30 {
    margin-left: 3dvh !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;
}

.mb150 {
  margin-bottom: 75px !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;
  }
  .mb150 {
    margin-bottom: 150px !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;
  }
  .mb150 {
    margin-bottom: 150px !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 */