@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100..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: #000;
  margin: 0px;
  font-family: YakuHanJP, "Sawarabi Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  overflow-y: auto;
}
body.open {
  overflow-y: hidden;
}

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

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

dl,
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 60px;
  position: fixed;
  top: 10px;
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  width: calc(100% - 30px);
  margin: 0px 15px;
}
@media (min-width: 992px) {
  #header {
    opacity: 0;
    visibility: hidden;
    top: 20px;
    height: 68px;
    width: calc(100% - 50px);
    margin: 0px 25px;
  }
}
#header.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 600ms ease, visibility 0s linear 0s, -webkit-transform 600ms ease;
  transition: opacity 600ms ease, visibility 0s linear 0s, -webkit-transform 600ms ease;
  transition: opacity 600ms ease, transform 600ms ease, visibility 0s linear 0s;
  transition: opacity 600ms ease, transform 600ms ease, visibility 0s linear 0s, -webkit-transform 600ms ease;
}
#header #header-Right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header #logo {
  display: block;
  width: 190px;
}
@media (min-width: 992px) {
  #header #logo {
    width: 216px;
  }
}
#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 #mainNavi {
  display: none;
}
@media (min-width: 768px) {
  #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: 0px 1rem;
}
@media (min-width: 1400px) {
  #header #mainNavi > li {
    margin: 0px 1.75rem;
  }
}
#header #mainNavi > li > a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.04em;
  font-size: 1.8rem;
  position: relative;
}
#header #mainNavi > li > a:after {
  position: absolute;
  bottom: -0.4rem;
  width: 0%;
  content: "";
  display: block;
  background: #000;
  height: 1px;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  border: none;
}
#header #mainNavi li.active a:after,
#header #mainNavi li a:hover:after {
  width: 100%;
}
#header #contactButton {
  display: none;
}
@media (min-width: 768px) {
  #header #contactButton {
    margin-left: 1.75rem;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    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;
    border: 1px solid #000;
    /* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    width: 110px;
    height: 36px;
    font-size: 1.8rem;
    background: #000;
  }
  #header #contactButton span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #fff;
  }
  #header #contactButton:hover span {
    color: #000;
  }
  #header #contactButton:before {
    display: block;
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #fff;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  #header #contactButton:hover:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (min-width: 992px) {
  #header #contactButton {
    width: 130px;
  }
}

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

/* -------------------------------

   // ハンバーガーメニュー

-------------------------------- */
#nav-toggle {
  position: fixed;
  top: 25px;
  right: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
  display: block;
}
@media (min-width: 768px) {
  #nav-toggle {
    display: none;
  }
}
#nav-toggle.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  #nav-toggle.on {
    display: none;
  }
}
#nav-toggle > div {
  position: relative;
  width: 32px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.3s ease-in-out;
  transition: top 0.5s ease, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  transition: transform 0.3s ease-in-out, top 0.5s ease, -webkit-transform 0.3s ease-in-out;
  /* #nav-toggle close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#gloval-nav {
  background: #fff;
  color: #000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 29px;
  padding-left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 999;
}

.open #gloval-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#gloval-nav {
  overflow-y: scroll;
}
#gloval-nav #gloval-nav_Logo {
  margin-bottom: 1rem;
}
#gloval-nav ul {
  list-style: none;
  margin-bottom: 1rem;
}
#gloval-nav ul li {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: -webkit-transform 1.3s ease;
  transition: -webkit-transform 1.3s ease;
  transition: transform 1.3s ease;
  transition: transform 1.3s ease, -webkit-transform 1.3s ease;
  position: relative;
  line-height: 1;
  font-family: "Lexend Exa", sans-serif;
  font-weight: 700;
  color: #000;
  display: block;
  letter-spacing: -0.04em;
  font-size: 5vw;
}
@media (min-width: 576px) {
  #gloval-nav ul li {
    font-size: 3.6rem;
  }
}
#gloval-nav ul li:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #000;
  left: 0px;
  position: absolute;
  -webkit-transition: all 1s 0s ease;
  transition: all 1s 0s ease;
}
#gloval-nav ul li:hover:after {
  width: 100%;
}
@media (min-width: 576px) {
  #gloval-nav ul li:hover:after {
    width: 500px;
  }
}
#gloval-nav ul li.active:after {
  width: 100%;
}
@media (min-width: 576px) {
  #gloval-nav ul li.active:after {
    width: 500px;
  }
}
#gloval-nav ul li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(6) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
#gloval-nav ul li:nth-child(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
#gloval-nav ul li a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding: 15px 0;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
#gloval-nav #gloval-nav_Adress {
  line-height: 1.4;
  margin-bottom: 30px;
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: -webkit-transform 1.3s ease;
  transition: -webkit-transform 1.3s ease;
  transition: transform 1.3s ease;
  transition: transform 1.3s ease, -webkit-transform 1.3s ease;
}
#gloval-nav #gloval-nav_Adress dt {
  font-size: 2.4rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
#gloval-nav #gloval-nav_Adress dd {
  font-weight: 700;
  font-size: 1.6rem;
}
#gloval-nav #gloval-nav_Adress dd a {
  text-decoration: none;
}
#gloval-nav #gloval-nav_Copy {
  font-size: 12px;
  font-weight: 700;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: -webkit-transform 1.3s ease;
  transition: -webkit-transform 1.3s ease;
  transition: transform 1.3s ease;
  transition: transform 1.3s ease, -webkit-transform 1.3s ease;
}

.open #gloval-nav li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.open #gloval-nav #gloval-nav_Adress {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.open #gloval-nav #gloval-nav_Copy {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

a#gloval-nav_Button {
  padding: 0.4em 1em;
  margin: 0px auto;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  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;
  border: 1px solid #000;
  /* ボーダーの色と太さ */
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  line-height: 1;
  font-size: 1.8rem;
  background: #000;
}
a#gloval-nav_Button span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
  font-size: 5vw;
  font-family: "Lexend Exa", sans-serif;
}
@media (min-width: 576px) {
  a#gloval-nav_Button span {
    font-size: 3.6rem;
  }
}
a#gloval-nav_Button:hover span {
  color: #000;
}
a#gloval-nav_Button:before {
  display: block;
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
a#gloval-nav_Button:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.mapPin {
  background: #000;
  color: #fff !important;
  width: 40px;
  height: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 0.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  font-size: 1.2rem;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #000000;
  line-height: 1.4;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  padding: 60px 0px 0px;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px 0px;
  }
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
#footer #footerBody .footerLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 70vw;
  text-align: center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 320px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    text-align: left;
  }
}
#footer #footerBody .footerLeft .mapPin {
  background: #fff;
  color: #000 !important;
  height: 2.2rem;
}
#footer #footerBody .footerLeft .tel-DL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Lexend Exa", sans-serif;
}
#footer #footerBody .footerLeft .tel-DL dt {
  font-weight: 400;
  width: 5rem;
}
#footer .footerRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
#footer .footerRight #textLink {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #footer .footerRight #textLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  #footer .footerRight #textLink {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#footer .footerRight #textLink li {
  margin: 0px 0px 0px 2rem;
}
#footer .footerRight #textLink li a {
  text-decoration: none;
}
#footer .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer .footerRight #copy {
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
}
@media (min-width: 992px) {
  #footer .footerRight #copy {
    text-align: right;
  }
}

.infinite-slider {
  font-family: "Lexend Exa", sans-serif;
  font-size: 20rem;
  line-height: 1;
  color: #212121;
  letter-spacing: -0.06em;
}
.infinite-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.infinite-slider .swiper-slide {
  height: 180px !important;
  /* 高さを指定 */
  width: auto !important;
}
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  #mainVisual {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#mainVisual .mv-frame {
  width: 100dvw;
  padding: 60px 40px;
}
@media (min-width: 992px) {
  #mainVisual .mv-frame {
    width: 50dvw;
  }
}
@media (min-width: 1200px) {
  #mainVisual .mv-frame {
    padding: 40px 0px 0px 40px;
  }
}
@media (min-width: 1400px) {
  #mainVisual .mv-frame {
    padding: 60px 0px 0px 60px;
  }
}
#mainVisual .mv-frame #mainMunu-Button {
  margin-bottom: 16vw;
}
#mainVisual .mv-frame .inr {
  padding-left: 0px;
}
@media (min-width: 992px) {
  #mainVisual .mv-frame .inr {
    padding: 0px 20px;
  }
}
@media (min-width: 1200px) {
  #mainVisual .mv-frame .inr {
    padding: 0px 40px;
  }
}
@media (min-width: 1600px) {
  #mainVisual .mv-frame .inr {
    padding: 0px 60px 0px 40px;
  }
}
#mainVisual .mv-frame .inr h2 {
  display: none;
}
@media (min-width: 992px) {
  #mainVisual .mv-frame .inr h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 320px;
  }
}
#mainVisual .mv-frame .inr h2 .ja {
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  #mainVisual .mv-frame .inr h2 .ja {
    font-size: 4rem;
  }
}
#mainVisual .mv-frame .inr h2 .ja .br {
  display: block;
}
@media (min-width: 1800px) {
  #mainVisual .mv-frame .inr h2 .ja .br {
    display: none;
  }
}
#mainVisual .mv-frame .inr h2 .en {
  font-size: 1.8rem;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.04em;
}
#mainVisual .mv-slider {
  height: 100dvh;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  position: relative;
  z-index: 10;
  top: 0;
  right: 0;
}
@media (min-width: 992px) {
  #mainVisual .mv-slider {
    width: 50dvw;
    position: sticky;
  }
}
#mainVisual {
  /* === .slide === */
}
#mainVisual .swiper-slide .media > img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}
#mainVisual .swiper-slide[class*=-active] .media > img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#mainVisual #catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  color: #fff;
}
@media (min-width: 992px) {
  #mainVisual #catch {
    display: none;
  }
}
#mainVisual #catch .ja {
  font-size: 6vw;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #mainVisual #catch .ja {
    font-size: 4rem;
  }
}
#mainVisual #catch .en {
  font-size: 2.4vw;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  #mainVisual #catch .en {
    font-size: 1.8rem;
  }
}

#logo {
  display: none;
}
@media (min-width: 992px) {
  #logo {
    display: block;
  }
}

#mainMenu {
  display: none;
}
@media (min-width: 992px) {
  #mainMenu {
    display: block;
    font-family: "Lexend Exa", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  #mainMenu li {
    margin: 1.75rem 0px;
  }
  #mainMenu li a {
    text-decoration: none;
    position: relative;
  }
  #mainMenu li a:after {
    display: block;
    content: "";
    width: 0%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 600ms 0s ease;
    transition: all 600ms 0s ease;
  }
  #mainMenu li a:hover:after {
    width: 100%;
  }
  #mainMenu li.active a:after {
    width: 100%;
  }
}

#mainMunu-Button {
  display: none;
}
@media (min-width: 992px) {
  #mainMunu-Button {
    display: block;
  }
  #mainMunu-Button a {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    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;
    border: 1px solid #000;
    /* ボーダーの色と太さ */
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    width: 110px;
    height: 36px;
    font-size: 1.8rem;
    background: #fff;
  }
  #mainMunu-Button a span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #000;
  }
  #mainMunu-Button a:hover span {
    color: #fff;
  }
  #mainMunu-Button a:before {
    display: block;
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #000;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  #mainMunu-Button a:hover:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*
.c-swiper-fade
---------------------------------------------------------------- */
.c-swiper-fade {
  position: relative;
  min-width: 0;
  /* === base-setting === */
}
.c-swiper-fade .slide {
  height: 100%;
}
.c-swiper-fade .slide .swiper,
.c-swiper-fade .slide .swiper-wrapper,
.c-swiper-fade .slide .swiper-slide,
.c-swiper-fade .slide .media {
  height: 100%;
}
.c-swiper-fade .slide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.c-swiper-fade .slide .media > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-fade .swiper-slide {
  -webkit-transition-property: opacity !important;
  transition-property: opacity !important;
}

.business-Box {
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .business-Box {
    height: 1041px;
  }
}
.business-Box .img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-114%, 0);
          transform: translate(-114%, 0);
  max-width: initial;
}

.recruit-Wrap {
  width: 100%;
  height: auto;
  background: #121212;
  position: relative;
}
@media (min-width: 992px) {
  .recruit-Wrap {
    height: 960px;
  }
}
.recruit-Wrap .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22vw;
  z-index: 3;
}
@media (min-width: 576px) {
  .recruit-Wrap .img {
    width: 120px;
  }
}
@media (min-width: 768px) {
  .recruit-Wrap .img {
    width: 170px;
  }
}
@media (min-width: 992px) {
  .recruit-Wrap .img {
    width: 220px;
  }
}
@media (min-width: 1200px) {
  .recruit-Wrap .img {
    width: auto;
  }
}
.recruit-Wrap .container {
  height: 100%;
  padding: 75px 25px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .recruit-Wrap .container {
    padding: 150px 25px;
  }
}
.recruit-Wrap .loopSlider-Wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.recruit-Wrap .swiper {
  width: 48dvw;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .recruit-Wrap .swiper {
    width: 32dvw;
  }
}
@media (min-width: 1200px) {
  .recruit-Wrap .swiper {
    width: 24dvw;
  }
}
.recruit-Wrap .loop-Slider03 {
  display: none;
}
@media (min-width: 768px) {
  .recruit-Wrap .loop-Slider03 {
    display: block;
  }
}
.recruit-Wrap .loop-Slider04 {
  display: none;
}
@media (min-width: 1200px) {
  .recruit-Wrap .loop-Slider04 {
    display: block;
  }
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide {
  width: 100%;
  height: 75%;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-Wrap {
  width: 100%;
  height: 460px;
  background: #f5f5f5;
  overflow-y: scroll;
  scrollbar-color: #555 #e0ebeb;
  scrollbar-width: thin;
  padding: 30px 15px;
}
@media (min-width: 992px) {
  .news-Wrap {
    height: 520px;
    padding: 60px 25px;
  }
}
.news-Wrap::-webkit-scrollbar {
  width: 6px;
  background-color: #737373;
}
.news-Wrap:-webkit-scrollbar-thumb {
  background: #dadada;
  width: 8px;
  border-radius: 0;
}

.news-table {
  width: 100%;
  border-top: none;
}
.news-table th {
  width: 100%;
  padding: 27px 0px 0px 0px;
  line-height: 1;
  font-weight: 400;
}
.news-table th .date {
  display: inline-block;
  margin-right: 1.6rem;
  font-family: "Lexend Exa", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.news-table th .icon-New {
  width: 48px;
  height: 20px;
  background: #000000;
  color: #fff;
  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;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.news-table td {
  width: 100%;
  border-bottom: none;
  padding: 20px 0px 27px 0px;
  line-height: 1.8;
  border-bottom: solid 1px #ccc;
  font-weight: 400;
  line-height: normal;
}

.contact-Wrap {
  background: url(../images/bg_contact.jpg) no-repeat center;
  padding: 75px 0px;
}
@media (min-width: 992px) {
  .contact-Wrap {
    padding: 150px 0px;
  }
}

.contact-Tel {
  font-family: "Lexend Exa", sans-serif;
  font-size: 7.2vw;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media (min-width: 576px) {
  .contact-Tel {
    font-size: 4.8rem;
  }
}
.contact-Tel a {
  text-decoration: none;
}

.contact-Btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  width: 240px;
  font-size: 3rem;
  height: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
}
@media (min-width: 576px) {
  .contact-Btn {
    width: 300px;
    font-size: 4.2rem;
  }
}
@media (min-width: 992px) {
  .contact-Btn {
    width: 360px;
  }
}
.contact-Btn:after {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 240/15;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: difference;
}
.contact-Btn:before {
  content: "";
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  position: absolute;
  width: 75px;
  right: -20px;
  bottom: -20px;
}
@media (min-width: 576px) {
  .contact-Btn:before {
    width: 90px;
    right: -20px;
    bottom: -20px;
  }
}
@media (min-width: 992px) {
  .contact-Btn:before {
    width: 120px;
    right: -30px;
    bottom: -30px;
  }
}
.contact-Btn:hover:before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*-------------------------------------------------------------------------------------------*
 *
 * business.html
 *  
 *-------------------------------------------------------------------------------------------*/
.card-DL {
  border: solid 1px #dadada;
  border-radius: 4px;
  padding: 40px 20px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: justify;
}
@media (min-width: 992px) {
  .card-DL {
    padding: 60px 30px;
  }
}
.card-DL .img {
  width: 40%;
  margin: 0px auto;
  margin-bottom: 2rem;
}
.card-DL .tit-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 500;
}
.card-DL .tit-num span:nth-child(1) {
  font-size: 3rem;
  font-family: "Lexend Exa", sans-serif;
}
.card-DL .tit-num span:nth-child(2) {
  font-size: 1.6rem;
}
.card-DL .tit {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.card-DL .txt {
  font-weight: 400;
}

.blank-Image {
  width: 100%;
  height: 100%;
  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;
  opacity: 0.15;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #D2D2D2;
}
@media (min-width: 768px) {
  .responsiveTable {
    width: 100%;
    display: table;
    border-bottom: none;
  }
}
.responsiveTable a {
  text-decoration: none;
}
.responsiveTable th {
  width: 100%;
  padding: 20px 0px 0px;
  font-weight: 400;
  border-top: solid 1px #D2D2D2;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable th {
    padding: 4rem 2rem;
    width: 30%;
    border-top: solid 1px #D2D2D2;
    border-bottom: solid 1px #D2D2D2;
    display: table-cell;
    vertical-align: middle;
  }
}
.responsiveTable td {
  width: 100%;
  padding: 10px 0px 20px;
  border-bottom: none;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable td {
    padding: 4rem 2rem;
    border-top: solid 1px #D2D2D2;
    border-bottom: solid 1px #D2D2D2;
    display: table-cell;
  }
}

.loop-slider01 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.loop-slider01 .swiper-slide {
  height: 240px !important;
  /* 高さを指定 */
  width: auto !important;
  margin: 0px 5px;
}
.loop-slider01 .swiper-slide img {
  width: auto;
  height: 100%;
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.flow-DL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 125%;
  height: 100%;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .flow-DL {
    font-size: 175%;
  }
}
@media (min-width: 1200px) {
  .flow-DL {
    margin-bottom: 0px;
  }
}
.flow-DL:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 1;
}
.flow-DL.last:after {
  display: none;
}
.flow-DL dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  line-height: 1;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Lexend Exa", sans-serif;
}

.subTitle {
  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;
  width: 100%;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #000;
  font-size: 2.4rem;
  padding-bottom: 1em;
  border-bottom: solid 1px #000;
}

.gray-Box {
  background: #f5f5f5;
  padding: 30px 30px;
}
@media (min-width: 992px) {
  .gray-Box {
    padding: 60px 60px;
  }
}

.white-Box {
  background: #fff;
  padding: 30px 30px;
}
@media (min-width: 992px) {
  .white-Box {
    padding: 60px 60px;
  }
}

.point-Title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #000;
  font-size: 2.4rem;
  padding-bottom: 1em;
  border-bottom: solid 1px #000;
}
.point-Title img {
  width: 2rem;
  margin-right: 1.8rem;
  display: inline-block;
}

.check-List {
  line-height: 1.8;
}
.check-List > li {
  padding-left: 2.4em;
  margin-bottom: 2.4rem;
  position: relative;
}
.check-List > li::before {
  content: "";
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1;
  background: #000 url(../images/icon_check.svg) no-repeat center/60%;
  margin-right: 0.8rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
}

.hash-List {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hash-List li {
  background: #ebebeb;
  line-height: 1.4;
  margin-right: 0.6rem;
  white-space: nowrap;
  padding: 0em 0.8rem 0em 0.8em;
  margin-bottom: 0.8rem;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: #000;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.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: 420px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 580px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contact-Box {
  background: #f5f5f5;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  .contact-Box {
    padding: 120px 0px;
  }
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 20px 20px 20px 0px;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
  font-weight: 400;
}
.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%;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
    padding: 3rem 3rem 3rem 0px;
  }
  .mailfoamTable th div {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 3rem 0px 3rem 3rem;
    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 {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  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;
  border: 1px solid #000;
  /* ボーダーの色と太さ */
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  width: 100%;
  max-width: 480px;
  height: 54px;
  font-size: 1.8rem;
  background: #fff;
}
.formBtn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #000;
}
.formBtn:hover span {
  color: #fff;
}
.formBtn:before {
  display: block;
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #000;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.formBtn:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.formBtn button.formBtn {
  border: none;
  outline: none;
}
.formBtn button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 350px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 13px;
  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-Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}
#h2Title-Wrap:after {
  content: "";
  display: block;
  width: 100dvw;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  #h2Title-Wrap:after {
    width: 60dvw;
    position: sticky;
    height: 80dvh;
  }
}
#h2Title-Wrap.p02:after {
  background: url(../images/bg_h2title02.jpg) no-repeat center/cover;
}
#h2Title-Wrap.p03:after {
  background: url(../images/bg_h2title03.jpg) no-repeat center/cover;
}
#h2Title-Wrap.p04:after {
  background: url(../images/bg_h2title04.jpg) no-repeat center/cover;
}
#h2Title-Wrap.p05:after {
  background: url(../images/bg_h2title05.jpg) no-repeat center/cover;
}
#h2Title-Wrap .inr {
  height: 60dvh;
  padding: 60px 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100dvw;
}
@media (min-width: 992px) {
  #h2Title-Wrap .inr {
    height: calc(180dvh - 400px);
    width: 40dvw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  #h2Title-Wrap .inr {
    padding: 40px 30px 0px;
  }
}
@media (min-width: 1400px) {
  #h2Title-Wrap .inr {
    padding: 60px 0px 0px 60px;
  }
}

#h2Title {
  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: flex;
      -ms-flex-align: flex;
          align-items: flex;
  line-height: 1;
  color: #fff;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  #h2Title {
    color: #000;
    margin-top: calc(80dvh - 400px);
  }
}
#h2Title .ja {
  font-size: 6rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
#h2Title .en {
  font-size: 1.8rem;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.04em;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.title .en {
  font-size: 7vw;
  text-align: left;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: "Lexend Exa", sans-serif;
}
@media (min-width: 576px) {
  .title .en {
    font-size: 3.6rem;
  }
}
.title .ja {
  font-size: 3.6vw;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 1.4rem;
  }
}
.title.text-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title.text-center .en {
  text-align: center;
}
.title.text-center .ja {
  text-align: center;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}
.title.sticky {
  position: sticky;
  top: 120px;
}

.title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title2 .ja {
  font-size: 6vw;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .title2 .ja {
    font-size: 3.8rem;
  }
}
@media (min-width: 992px) {
  .title2 .ja {
    font-size: 4rem;
  }
}
.title2 .ja .br {
  display: block;
}
@media (min-width: 1800px) {
  .title2 .ja .br {
    display: none;
  }
}
.title2 .en {
  font-size: 1.8rem;
  font-family: "Lexend Exa", sans-serif;
  letter-spacing: -0.04em;
}

.read {
  font-size: 4.8vw;
  letter-spacing: 0.14em;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .read {
    font-size: 2.8rem;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  width: 200px;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
}
@media (min-width: 992px) {
  .detailBtn {
    width: 240px;
  }
}
.detailBtn:after {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 240/15;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: difference;
}
.detailBtn:before {
  content: "";
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  -webkit-transition: all 600ms 0s ease;
  transition: all 600ms 0s ease;
  position: absolute;
  width: 60px;
  right: -15px;
  bottom: -15px;
}
@media (min-width: 992px) {
  .detailBtn:before {
    width: 80px;
    right: -20px;
    bottom: -20px;
  }
}
.detailBtn:hover:before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.detailBtn.white:before {
  background: #fff;
}
.detailBtn.white:hover {
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.flexible-Image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}
@media (min-width: 992px) {
  .flexible-Image {
    aspect-ratio: 3/4;
  }
}
.flexible-Image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.white {
  color: #fff;
}

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

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

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

.verticalMiddle-Box {
  height: initial;
  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;
}
@media (min-width: 992px) {
  .verticalMiddle-Box {
    height: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

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

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

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

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

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

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

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