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

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

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

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

li {
  list-style-type: none;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0px;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: flex-start;
}
@media (min-width: 576px) {
  #header {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 80px;
  }
}
#header #logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 600ms 0s ease;
  background: #fff;
  aspect-ratio: 380/80;
  border-radius: 0px 0px 20px 0px;
  border-right: solid 1px #f5721f;
  border-bottom: solid 1px #f5721f;
  width: 280px;
}
@media (min-width: 992px) {
  #header #logo a {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  #header #logo a {
    width: 380px;
    border-radius: 0px 0px 40px 0px;
  }
}
@media (min-width: 1400px) {
  #header #logo a {
    width: 410px;
  }
}
@media (min-width: 1800px) {
  #header #logo a {
    width: 374px;
    background: none;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
  }
}
#header #logo a img {
  width: 75%;
}
@media (min-width: 992px) {
  #header #logo a img {
    width: 80%;
  }
}
#header #header-Right {
  display: none;
}
@media (min-width: 992px) {
  #header #header-Right {
    display: flex;
    align-items: center;
    background: #f5721f;
    padding: 0px 30px;
    border-radius: 0px 0px 0px 20px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
  }
}
@media (min-width: 1200px) {
  #header #header-Right {
    border-radius: 0px 0px 0px 40px;
  }
}
#header #mainNavi {
  transition: all 600ms 0s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 55px;
}
@media (min-width: 1200px) {
  #header #mainNavi {
    height: 70px;
  }
}
@media (min-width: 1600px) {
  #header #mainNavi {
    height: 70px;
  }
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: #fff;
  font-size: 1.6rem;
  transition: all 600ms 0s ease;
  padding: 0px 1.5rem;
  text-decoration: none;
}
@media (min-width: 1200px) {
  #header #mainNavi > li > a {
    padding: 0px 2rem;
  }
}
#header #mainNavi > li > a:before {
  display: none;
}
#header #mainNavi li.active a:before,
#header #mainNavi li a:hover:before {
  width: 8px;
  aspect-ratio: 1;
  content: "";
  display: block;
  background: #fff;
  transition: all 600ms 0s ease;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translate(0, -35%);
}
#header #instagramButton {
  width: 24px;
  height: 24px;
  margin-left: 1.5rem;
}
@media (min-width: 1200px) {
  #header #instagramButton {
    margin-left: 2rem;
  }
}
#header #instagramButton img {
  filter: brightness(0) invert(1);
}
#header #contactButton {
  display: none;
}
@media (min-width: 992px) {
  #header #contactButton {
    display: block;
    margin-left: 2rem;
  }
  #header #contactButton a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 400;
    height: 100%;
    background: #1d1d1d;
    height: 38px;
    width: 160px;
    transition: all 600ms 0s ease;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 22px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  #header #contactButton a {
    height: 40px;
    width: 180px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a:after {
    display: none;
  }
  #header #contactButton a img {
    filter: brightness(0) invert(1);
    width: 18px;
    margin-right: 0.7rem;
    transition: all 600ms 0s ease;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #header #contactButton a img {
    width: 20px;
  }
}
@media (min-width: 992px) {
  #header #contactButton a:hover, #header #contactButton a.active a {
    background: #fff;
    color: #1d1d1d;
  }
  #header #contactButton a:hover img, #header #contactButton a.active a img {
    filter: brightness(0);
  }
}
@media (min-width: 1200px) {
  #header #contactButton {
    margin-left: 4rem;
  }
}
#header.on {
  height: 50px;
}
#header.on #logo a {
  background: #fff;
  border-right: solid 1px #f5721f;
  border-bottom: solid 1px #f5721f;
}

.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-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: #f5721f;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 60px 30px 30px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -380px;
    width: 380px;
  }
}
#sidebar .inr {
  border-radius: 15px;
  background: #fff;
  padding: 30px 20px;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  width: 280px;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  line-height: 1.2;
  display: flex;
  padding: 20px 10px 20px 25px;
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: solid 1px #f5721f;
  font-weight: 700;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li a:before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1;
  background: #e0e0e0;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  transform: translate(0, -65%);
}
#sidebar .list-sidenav > li.active > a:before,
#sidebar .list-sidenav > li > a:hover:before {
  background: #1d1d1d;
}
#sidebar .list-sidenav > li.has-submenu > a:after {
  width: 18px;
  right: 4px;
  background: url(../images/icon_plus.svg) no-repeat center/16px;
}
#sidebar .list-sidenav > li.has-submenu > a.on:after {
  right: 4px;
  background: url(../images/icon_minus.svg) no-repeat center/16px;
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #cacaca;
}
#sidebar .submenu li a {
  padding: 10px 15px 10px 28px;
  font-size: 14px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#sidebar .submenu li a:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
#sidebar .submenu li a:hover {
  background: #f7f7f7;
}
#sidebar .submenu li a.active a {
  background: #f7f7f7;
}

.sidebar-bnr {
  text-align: center;
}
.sidebar-bnr img {
  width: 80%;
  margin: 0px auto;
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

#sidebarInstagram {
  width: 100%;
  background: #fff;
  color: #1d1d1d;
  border: solid 1px #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 0px 15px;
  height: 56px;
  font-size: 20px;
  border-radius: 28px;
  font-family: "Lexend", sans-serif;
}
#sidebarInstagram img {
  filter: brightness(0);
  margin-right: 1.2rem;
  width: 19px;
  height: auto;
}
#sidebarInstagram:hover {
  opacity: 0.9;
}

#sidebarContact {
  width: 100%;
  background: #1d1d1d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  padding: 0px 15px;
  height: 56px;
  font-size: 20px;
  border-radius: 28px;
}
#sidebarContact img {
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
  width: 19px;
  height: auto;
}
#sidebarContact:hover {
  opacity: 0.9;
}

#sidebarTel {
  font-weight: 700;
  font-size: 7.2vw;
  font-family: "Lexend", sans-serif;
  text-align: center;
}
@media (min-width: 576px) {
  #sidebarTel {
    font-size: 3rem;
  }
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* -------------------------------
          オーバーレイ
      -------------------------------- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 10px;
  top: 9px;
  width: 40px;
  height: 40px;
  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 {
  background: #333;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  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;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #2a2a2a;
  overflow: hidden;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  padding: 60px 0px;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 100px 0px;
  }
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
#footer #footerBody .footerLeft {
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 70vw;
  text-align: center;
  filter: brightness(0) invert(1);
  margin: 0px auto;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 320px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft #f-logo {
    text-align: left;
    margin: initial;
  }
}
#footer #footerBody .footerLeft .mapPin {
  width: 14px;
  display: inline-flex;
  filter: brightness(0) invert(1);
  margin-left: 0.6rem;
}
#footer #footerBody .footerRight #textLink {
  display: none;
  justify-content: center;
  font-size: 1.4rem;
  height: 41px;
  align-items: center;
}
@media (min-width: 768px) {
  #footer #footerBody .footerRight #textLink {
    display: flex;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    justify-content: flex-end;
  }
}
#footer #footerBody .footerRight #textLink li {
  margin: 0px 0px 0px 2rem;
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer #footerBody .footerRight .footer-Instagram {
  text-align: center;
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight .footer-Instagram {
    text-align: right;
  }
}
#footer #footerBody .footerRight .footer-Instagram img {
  width: 24px;
  filter: brightness(0) invert(1);
}
#footer #copy {
  border-top: solid 1px #5f5f5f;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual-Wrap {
  background: #f5721f;
  padding-bottom: 65px;
  overflow: hidden;
}
@media (min-width: 992px) {
  #mainVisual-Wrap {
    padding-bottom: 130px;
  }
}

#mainVisual {
  position: relative;
  width: 100%;
  display: flex;
  background: #f5721f;
  height: 120vw;
}
@media (min-width: 576px) {
  #mainVisual {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  #mainVisual {
    height: 740px;
  }
}
@media (min-width: 1400px) {
  #mainVisual {
    height: 820px;
  }
}
#mainVisual #mainVisual-Left {
  width: 22.5vw;
  height: 100%;
  position: relative;
  display: flex;
  background: #f5721f;
  background: linear-gradient(180deg, rgb(245, 114, 31) 0%, rgb(245, 114, 31) 33.333%, rgb(255, 255, 255) 33.333%, rgb(255, 255, 255) 100%);
}
#mainVisual #mainVisual-Left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 33.333%;
  background: #fff;
  border-radius: 0px 0px 3.5vw 0px;
  z-index: 1;
}
@media (min-width: 992px) {
  #mainVisual #mainVisual-Left:before {
    width: 93%;
  }
}
#mainVisual #mainVisual-Left:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66.666%;
  background: #f5721f;
  border-radius: 6.4vw 0px 0px 0px;
  z-index: 2;
}
#mainVisual #mainVisual-Left #text-animation {
  --text-animation-width: 30vw;
  position: absolute;
  left: calc(20vw - var(--text-animation-width) / 2);
  z-index: 4;
  width: var(--text-animation-width);
  top: calc(38.7vw - var(--text-animation-width) / 2);
}
@media (min-width: 576px) {
  #mainVisual #mainVisual-Left #text-animation {
    --text-animation-width: 15vw;
    top: calc(213px - var(--text-animation-width) / 2);
  }
}
@media (min-width: 992px) {
  #mainVisual #mainVisual-Left #text-animation {
    --text-animation-width: 10vw;
  }
}
@media (min-width: 1200px) {
  #mainVisual #mainVisual-Left #text-animation {
    top: calc(239px - var(--text-animation-width) / 2);
  }
}
@media (min-width: 1400px) {
  #mainVisual #mainVisual-Left #text-animation {
    top: calc(273px - var(--text-animation-width) / 2);
  }
}
#mainVisual #mainVisual-Left #text-animation img {
  animation: 20s linear infinite rotation1;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mainVisual #mainVisual-Left #catch {
  position: absolute;
  left: 4vw;
  bottom: 120px;
  z-index: 5;
}
@media (min-width: 1200px) {
  #mainVisual #mainVisual-Left #catch {
    left: 6vw;
    bottom: 140px;
  }
}
@media (min-width: 1400px) {
  #mainVisual #mainVisual-Left #catch {
    bottom: 180px;
  }
}
#mainVisual #mainVisual-Left #catch img {
  max-width: 90vw;
}
@media (min-width: 1200px) {
  #mainVisual #mainVisual-Left #catch img {
    max-width: initial;
  }
}
#mainVisual #mainVisual-Left #scroll_down {
  position: absolute;
  left: 4vw;
  bottom: 40px;
  z-index: 6;
  transform: scale(0.75);
  transform-origin: left center;
}
@media (min-width: 768px) {
  #mainVisual #mainVisual-Left #scroll_down {
    transform: scale(1);
  }
}
@media (min-width: 1200px) {
  #mainVisual #mainVisual-Left #scroll_down {
    left: 6vw;
    bottom: 60px;
  }
}
@media (min-width: 1400px) {
  #mainVisual #mainVisual-Left #scroll_down {
    bottom: 90px;
  }
}
#mainVisual #mainVisual-Left #scroll_down a {
  width: 193px;
  height: 44px;
  padding: 0px 21px;
  color: #fff;
  display: inline-flex;
  border: solid 1px #fff;
  background: #f5721f;
  border-radius: 22px;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-weight: 18rem;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  position: relative;
}
#mainVisual #mainVisual-Left #scroll_down a:after {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow-down.svg) no-repeat center/contain;
  filter: brightness(0) invert(1);
  animation: 2s scroll infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(0, -5px);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
  100% {
    opacity: 0;
  }
}
#mainVisual #mainVisual-Right {
  width: 77.5vw;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
@media (min-width: 992px) {
  #mainVisual #mainVisual-Right {
    border-bottom-left-radius: 100px;
  }
}

.shizuoka-Box {
  position: relative;
}
.shizuoka-Box .title {
  position: relative;
  z-index: 3;
}
.shizuoka-Box .img {
  position: initial;
  aspect-ratio: 790/594;
  z-index: 1;
}
@media (min-width: 768px) {
  .shizuoka-Box .img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    opacity: 0.6;
  }
}
@media (min-width: 992px) {
  .shizuoka-Box .img {
    width: 690px;
  }
}
@media (min-width: 1400px) {
  .shizuoka-Box .img {
    width: 790px;
    opacity: 1;
  }
}
.shizuoka-Box .txt {
  position: relative;
  z-index: 2;
}

.service-Link {
  text-decoration: none;
  position: relative;
  display: block;
}
.service-Link:after {
  content: "";
  display: block;
  position: absolute;
  top: 1.95vw;
  right: -1.95vw;
  width: 100%;
  height: 100%;
  border: solid 1px #fff;
  border-radius: 40px 0px 40px 0px;
  z-index: 1;
  background: #f5721f;
}
@media (min-width: 768px) {
  .service-Link:after {
    top: 15px;
    right: -15px;
  }
}
@media (min-width: 992px) {
  .service-Link:after {
    border-radius: 80px 0px 80px 0px;
  }
}
@media (min-width: 768px) {
  .service-Link:hover .service-DL {
    transform: translate(0, -16px);
  }
}
.service-Link.box01 {
  transform: translate(0, 0);
}
@media (min-width: 768px) {
  .service-Link.box01 {
    transform: translate(0, 35px);
  }
}
@media (min-width: 1200px) {
  .service-Link.box01 {
    transform: translate(0, 70px);
  }
}
.service-Link.box03 {
  transform: translate(0, 0px);
}
@media (min-width: 768px) {
  .service-Link.box03 {
    transform: translate(0, 70px);
  }
}
@media (min-width: 1200px) {
  .service-Link.box03 {
    transform: translate(0, -70px);
  }
}

.service-DL {
  width: 100%;
  border-radius: 40px 0px 40px 0px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  .service-DL {
    border-radius: 80px 0px 80px 0px;
  }
}
.service-DL dt {
  background: #fff;
  height: 60px;
  padding-left: 4.16vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-decoration: none;
}
@media (min-width: 576px) {
  .service-DL dt {
    padding-left: 24px;
  }
}
@media (min-width: 992px) {
  .service-DL dt {
    height: 90px;
  }
}
.service-DL dt span {
  display: block;
  content: "";
  height: 100%;
  aspect-ratio: 1;
  background: #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-DL dt span img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
}

.service-Wrap {
  padding: 105px 0px;
  background: #f5721f url(../images/round-corner_left.gif) no-repeat top left/64px 64px;
}
@media (min-width: 992px) {
  .service-Wrap {
    padding: 210px 0px;
    background: #f5721f url(../images/round-corner_left.gif) no-repeat top left/128px 128px;
  }
}
.service-Wrap .container1500 {
  position: relative;
  z-index: 10;
}

.loopSlider_Left {
  margin-bottom: -4vw;
}
@media (min-width: 992px) {
  .loopSlider_Left {
    margin-bottom: -20px;
  }
}
@media (min-width: 1200px) {
  .loopSlider_Left {
    margin-bottom: -40px;
  }
}

.loopSlider_Right {
  margin-top: -2vw;
}
@media (min-width: 992px) {
  .loopSlider_Right {
    margin-top: -30px;
  }
}
@media (min-width: 1200px) {
  .loopSlider_Right {
    margin-top: -30px;
  }
}

.loopSlider_Left,
.loopSlider_Right {
  font-family: "Lexend", sans-serif;
  font-size: 19vw;
  text-shadow: 1px 0 0 #f5721f, 0 1px 0 #f5721f, -1px 0 0 #f5721f, 0 -1px 0 #f5721f;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .loopSlider_Left,
  .loopSlider_Right {
    font-size: 9.6vw;
  }
}
.loopSlider_Left .slick-slide,
.loopSlider_Right .slick-slide {
  margin: 0px 0px;
}

.recruit-Box {
  position: relative;
}
.recruit-Box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  border: solid 1px #f5721f;
  border-radius: 40px;
  z-index: 1;
  transform: translate(15px, 15px);
}
@media (min-width: 992px) {
  .recruit-Box:after {
    border-radius: 80px;
    transform: translate(30px, 30px);
  }
}
.recruit-Box .inr {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  background: #f5721f;
  color: #fff;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 40px;
  position: relative;
}
@media (min-width: 992px) {
  .recruit-Box .inr {
    border-radius: 80px;
    padding: 60px 60px;
  }
}
@media (min-width: 1200px) {
  .recruit-Box .inr {
    height: 600px;
    padding: 0px 90px;
  }
}
.recruit-Box .inr .img {
  position: initial;
  max-width: 100%;
  transform: translate(0, 0);
}
@media (min-width: 1200px) {
  .recruit-Box .inr .img {
    position: absolute;
    max-width: initial;
    top: 0px;
    right: 0px;
    width: 710px;
    border-radius: 40px;
    transform: translate(64%, 60px);
  }
}
@media (min-width: 1400px) {
  .recruit-Box .inr .img {
    transform: translate(64%, 60px);
    width: 750px;
  }
}

.contact-Wrap {
  padding: 60px 0px;
  background: #f5721f;
  border-radius: 64px 64px 0px 0px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .contact-Wrap {
    padding: 120px 0px;
    border-radius: 128px 128px 0px 0px;
    background: url(../images/p01_contact.jpg) no-repeat center/cover;
  }
}

.contactBtn {
  text-align: center;
}
.contactBtn a {
  text-decoration: none;
}
.contactBtn span {
  display: inline-flex;
  height: 86px;
  max-width: 396px;
  width: 100%;
  border: solid 1px #1d1d1d;
  border-radius: 43px;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
}
.contactBtn span img {
  width: 24px;
  margin-right: 16px;
}

.contactBtn-Mail {
  text-align: center;
}
.contactBtn-Mail a {
  text-decoration: none;
}
.contactBtn-Mail span {
  display: inline-flex;
  height: 86px;
  max-width: 396px;
  width: 100%;
  background: #1d1d1d;
  color: #fff;
  border-radius: 43px;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
  transition: all 600ms 0s ease;
}
.contactBtn-Mail span img {
  width: 24px;
  margin-right: 16px;
  filter: brightness(0) invert(1);
  transition: all 600ms 0s ease;
}
.contactBtn-Mail span:hover {
  background: #fff;
  color: #1d1d1d;
}
.contactBtn-Mail span:hover img {
  filter: brightness(0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.tabBtn {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0px 30px;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  background: #f5721f;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  transition: all 600ms 0s ease;
}
.tabBtn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabBtn:after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1;
  background: url(../images/icon_double_arrow_down.svg) no-repeat center/cover;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
  right: 24px;
}
@media (min-width: 992px) {
  .tabBtn:after {
    right: 16px;
  }
}
@media (min-width: 1200px) {
  .tabBtn:after {
    right: 24px;
  }
}
.tabBtn:hover {
  color: #f5721f;
  background: #fff;
  border: solid 1px #f5721f;
}
.tabBtn:hover:after {
  filter: invert(43%) sepia(71%) saturate(856%) hue-rotate(347deg) brightness(107%) contrast(92%);
}

.gray-Box {
  background: #ececec;
  padding: 5vw;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .gray-Box {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .gray-Box {
    border-radius: 40px;
    padding: 60px;
  }
}

.flow-Wrap dl {
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  background: #f5721f;
  height: 60px;
  border-radius: 30px;
  padding: 0px 30px;
}
.flow-Wrap dl:after {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: #f5721f;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  position: absolute;
  bottom: -19px;
  left: 18%;
}
@media (min-width: 768px) {
  .flow-Wrap dl:after {
    left: 12%;
  }
}
.flow-Wrap dl:last-child:after {
  display: none;
  margin-bottom: 0px;
}
.flow-Wrap.left dl:last-child {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .flow-Wrap.left dl:last-child {
    margin-bottom: 0rem;
  }
}
.flow-Wrap.left dl:last-child:after {
  display: block;
}
@media (min-width: 992px) {
  .flow-Wrap.left dl:last-child:after {
    display: none;
  }
}
.flow-Wrap dt {
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  width: 42px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .flow-Wrap dt {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .flow-Wrap dt {
    width: 10%;
  }
}
.flow-Wrap dd {
  color: #fff;
  font-weight: 700;
  width: 90%;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .flow-Wrap dd {
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .flow-Wrap dd {
    width: 90%;
  }
}

.responsiveTable {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
}
@media (min-width: 768px) {
  .responsiveTable {
    width: 100%;
    display: table;
    border-bottom: none;
  }
}
.responsiveTable tbody {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable tbody {
    display: table-row-group;
  }
}
.responsiveTable tr {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable tr {
    display: table-row;
  }
}
.responsiveTable tr:first-child th {
  border-top: solid 1px #6d6d6d;
}
.responsiveTable tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable tr:first-child td {
    border-top: solid 1px #ccc;
  }
}
.responsiveTable th {
  width: 100%;
  padding: 25px 0px 0px;
  font-weight: bold;
  border-top: solid 1px #6d6d6d;
  line-height: 140%;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .responsiveTable th {
    padding: 50px 25px;
    width: 30%;
    border-top: none;
    border-bottom: solid 1px #6d6d6d;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .responsiveTable th {
    width: 20%;
  }
}
.responsiveTable td {
  width: 100%;
  padding: 25px 0px 25px;
  border-bottom: none;
  line-height: 140%;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable td {
    padding: 50px 25px;
    border-top: none;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
.responsiveTable.white {
  border-bottom: solid 1px #fff;
}
.responsiveTable.white tr:first-child th {
  border-top: solid 1px #fff;
}
@media (min-width: 768px) {
  .responsiveTable.white tr:first-child td {
    border-top: solid 1px #fff;
  }
}
.responsiveTable.white th {
  border-top: solid 1px #fff;
}
@media (min-width: 768px) {
  .responsiveTable.white th {
    border-bottom: solid 1px #fff;
  }
}
@media (min-width: 768px) {
  .responsiveTable.white td {
    border-bottom: solid 1px #fff;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.recruitSlider-Left,
.recruitSlider-Right {
  position: relative;
  z-index: 10;
}
.recruitSlider-Left .slick-slide,
.recruitSlider-Right .slick-slide {
  margin: 0px 5px;
}
.recruitSlider-Left li,
.recruitSlider-Right li {
  border-radius: 16px;
  overflow: hidden;
}

.staff-Table {
  width: 100%;
  display: table;
  border-top: solid 1px #fff;
  color: #fff;
}
.staff-Table th {
  font-weight: 700;
  padding: 25px 0px;
  width: 20%;
  border-bottom: solid 1px #fff;
  line-height: 1.4;
  vertical-align: middle;
  text-align: center;
}
.staff-Table td {
  line-height: 1.4;
  padding: 25px 15px;
  border-bottom: solid 1px #fff;
  text-align: left;
}

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

.googleMap {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .googleMap {
    height: 480px;
    border-radius: 40px;
  }
}

.work-DL {
  display: flex;
  height: 165px;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .work-DL {
    height: 215px;
  }
}
.work-DL:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #f5721f;
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}
@media (min-width: 1200px) {
  .work-DL:before {
    opacity: 1;
  }
}
.work-DL dt {
  width: 75%;
  background: #f5721f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  border-radius: 30px;
  padding: 0px 25px;
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .work-DL dt {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .work-DL dt {
    height: 60px;
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .work-DL dt {
    padding: 0px 15px;
    justify-content: center;
    width: 59%;
    margin-bottom: 0px;
  }
}
@media (min-width: 1400px) {
  .work-DL dt {
    width: 26%;
  }
}
.work-DL dt span:first-child {
  margin-right: 0.6em;
}
.work-DL dd {
  width: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .work-DL dd {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .work-DL dd {
    width: 70%;
  }
}
.work-DL.left {
  flex-direction: column;
}
@media (min-width: 1200px) {
  .work-DL.left {
    flex-direction: row-reverse;
  }
}
.work-DL.left:before {
  right: initial;
  left: 8%;
  transform: translate(50%, 0);
}
@media (min-width: 1200px) {
  .work-DL.left:before {
    left: initial;
    right: 24%;
  }
}
@media (min-width: 1400px) {
  .work-DL.left:before {
    right: 13%;
  }
}
.work-DL.left dt {
  margin-left: 0;
  margin-right: 0px;
}
@media (min-width: 1200px) {
  .work-DL.left dt {
    margin-left: 5%;
  }
}
.work-DL.right {
  flex-direction: column;
}
@media (min-width: 1200px) {
  .work-DL.right {
    flex-direction: row;
  }
}
.work-DL.right:before {
  left: 8%;
  right: initial;
  transform: translate(-50%, 0);
}
@media (min-width: 1200px) {
  .work-DL.right:before {
    right: initial;
    left: 24%;
  }
}
@media (min-width: 1400px) {
  .work-DL.right:before {
    left: 13%;
  }
}
.work-DL.right dt {
  margin-left: 0;
  margin-right: 5%;
}
.work-DL.last {
  height: auto;
}
.work-DL.last:before {
  display: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
  background: #f5721f;
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0px;
}
@media (min-width: 992px) {
  .contactBox {
    border-radius: 40px;
    padding: 60px 0px;
  }
}
.contactBox a {
  text-decoration: none;
  color: #fff;
}
.contactBox dt {
  font-size: 3rem;
  font-family: "Lexend", sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contactBox dt {
    font-size: 3.6rem;
  }
}
@media (min-width: 1200px) {
  .contactBox dt {
    font-size: 4.4rem;
  }
}
.contactBox dd {
  text-align: center;
}
.contactBox dd .num {
  font-size: 3.6rem;
  font-family: "Lexend", sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contactBox dd .num {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .contactBox dd .num {
    font-size: 4.8rem;
  }
}
@media (min-width: 1400px) {
  .contactBox dd .num {
    font-size: 5.6rem;
  }
}
.contactBox dd .time {
  font-size: 1.6rem;
}

.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: flex;
  justify-content: flex-start;
  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: 1.5rem 1.5rem;
}

@media (min-width: 992px) {
  .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 {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 25px 0px 25px 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;
  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: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 56px;
  background: #1d1d1d;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
  border: none;
  border-radius: 28px;
  border: solid 1px #fff;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #fff;
  text-decoration: none;
  border: solid 1px #1d1d1d;
  color: #1d1d1d;
}
.formBtn:hover:after {
  filter: invert(4%) sepia(87%) saturate(7%) hue-rotate(330deg) brightness(103%) contrast(86%);
}
.formBtn:hover.back:before, .formBtn:hover.next:after {
  filter: invert(4%) sepia(87%) saturate(7%) hue-rotate(330deg) brightness(103%) contrast(86%);
}
.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;
  filter: brightness(0) invert(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;
  filter: brightness(0) invert(1);
  margin-left: 1.2rem;
}
.formBtn.next:after:hover {
  filter: invert(4%) sepia(87%) saturate(7%) hue-rotate(330deg) brightness(103%) contrast(86%);
}
.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;
  box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  word-wrap: break-word;
}
.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}
.privacyBox p {
  margin-bottom: 1em;
}
.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}
.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}
.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .privacyBox .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 {
  background: #f5721f;
  padding-bottom: 65px;
}
@media (min-width: 992px) {
  #h2Title-Wrap {
    padding-bottom: 130px;
  }
}

#h2Title {
  position: relative;
  width: 100%;
  display: flex;
  background: #f5721f;
  height: 340px;
}
@media (min-width: 992px) {
  #h2Title {
    height: 420px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 580px;
  }
}
#h2Title #h2Title-Left {
  width: 22.5vw;
  height: 100%;
  position: relative;
  display: flex;
  background: #f5721f;
  background: linear-gradient(180deg, rgb(245, 114, 31) 0%, rgb(245, 114, 31) 33.333%, rgb(255, 255, 255) 33.333%, rgb(255, 255, 255) 100%);
}
#h2Title #h2Title-Left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 33.333%;
  background: #fff;
  border-radius: 0px 0px 3.5vw 0px;
  z-index: 1;
}
@media (min-width: 992px) {
  #h2Title #h2Title-Left:before {
    width: 93%;
  }
}
#h2Title #h2Title-Left:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66.666%;
  background: #f5721f;
  border-radius: 6.4vw 0px 0px 0px;
  z-index: 2;
}
#h2Title #h2Title-Left h2 {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 20%;
  bottom: 15%;
  z-index: 10;
}
#h2Title #h2Title-Left h2 .en {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 18vw;
  text-align: left;
  color: #fff;
  line-height: 1;
}
@media (min-width: 576px) {
  #h2Title #h2Title-Left h2 .en {
    font-size: 12rem;
  }
}
@media (min-width: 992px) {
  #h2Title #h2Title-Left h2 .en {
    font-size: 12rem;
  }
}
@media (min-width: 1200px) {
  #h2Title #h2Title-Left h2 .en {
    font-size: 14rem;
  }
}
#h2Title #h2Title-Left h2 .ja {
  font-size: 5.2vw;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  #h2Title #h2Title-Left h2 .ja {
    font-size: 3.6rem;
  }
}
#h2Title #mainVisual-Right {
  width: 77.5vw;
  border-bottom-left-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 90px;
}
#h2Title #mainVisual-Right.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
}
#h2Title #mainVisual-Right.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title #mainVisual-Right.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title #mainVisual-Right.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center right -23vw;
  background-size: auto 100%;
}
@media (min-width: 992px) {
  #h2Title #mainVisual-Right.p05 {
    background: url(../images/bg_h2title05.jpg) no-repeat center;
  }
}
@media (min-width: 992px) {
  #h2Title #mainVisual-Right {
    border-bottom-left-radius: 100px;
  }
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
}
.title .en {
  font-size: 12vw;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0;
  color: #f5721f;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .title .en {
    font-size: 8rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 8.8rem;
  }
}
.title .ja {
  font-size: 3.6vw;
  font-weight: 700;
  position: relative;
  padding-left: 2.6rem;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 2rem;
    padding-left: 2.6rem;
  }
}
.title .ja:before {
  position: absolute;
  left: 0;
  top: 0.5em;
  content: "";
  display: block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../images/icon_star.png) no-repeat center/contain;
  filter: invert(64%) sepia(68%) saturate(4451%) hue-rotate(348deg) brightness(99%) contrast(94%);
}
.title.center {
  align-items: center;
}
.title.center .en {
  text-align: center;
}
.title.center .ja {
  padding: 0px 3.6rem;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}
.title.white .ja:before {
  filter: brightness(0) invert(1);
}

.subTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subTitle .ja {
  font-size: 4.8vw;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 0.8rem;
}
@media (min-width: 576px) {
  .subTitle .ja {
    font-size: 3.2rem;
  }
}
.subTitle .en {
  font-weight: 500;
  font-family: "Lexend", sans-serif;
  color: #f5721f;
  font-size: 2.8vw;
}
@media (min-width: 576px) {
  .subTitle .en {
    font-size: 2.2rem;
  }
}
.subTitle.center {
  align-items: center;
}

.subTitle2 {
  font-weight: 700;
  color: #1d1d1d;
  position: relative;
  padding-left: 36px;
  line-height: 1.4;
  font-size: 4.4vw;
}
@media (min-width: 576px) {
  .subTitle2 {
    font-size: 3.2rem;
  }
}
.subTitle2:before {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background: #f5721f;
  margin-right: 8px;
  position: absolute;
  left: 0px;
  top: 0.65em;
}
.subTitle2.white {
  color: #fff;
}
.subTitle2.white:before {
  filter: brightness(0) invert(1);
}

.read {
  font-size: 2rem;
  font-weight: 700;
}
.read:before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: #0a5cb8;
  margin-right: 8px;
  vertical-align: middle;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  background: #1d1d1d;
  color: #fff;
  font-weight: 700;
  max-width: 200px;
  width: 100%;
  height: 53px;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px;
  padding: 0px 30px 0.4rem;
  text-decoration: none;
  border: solid 1px #1d1d1d;
  transition: all 600ms 0s ease;
}
.detailBtn:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  transition: all 600ms 0s ease;
  filter: brightness(0) invert(1);
  margin-top: 0.4rem;
}
.detailBtn:hover {
  color: #1d1d1d;
  background: #fff;
}
.detailBtn:hover:after {
  filter: brightness(0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.text-justify {
  text-align: justify;
}

.heightCont {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.radius40 {
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .radius40 {
    border-radius: 40px;
  }
}

.radius20 {
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .radius20 {
    border-radius: 20px;
  }
}

.white-Wrap {
  overflow: hidden;
  padding: 65px 0px;
  background: #fff url(../images/round-corner_right.gif) no-repeat top right/35px 35px;
}
@media (min-width: 992px) {
  .white-Wrap {
    padding: 130px 0px;
    background: #fff url(../images/round-corner_right.gif) no-repeat top right/70px 70px;
  }
}

.orange-Wrap {
  overflow: hidden;
  padding: 65px 0px;
  background: #f5721f url(../images/round-corner_left.gif) no-repeat top left/64px 64px;
}
@media (min-width: 992px) {
  .orange-Wrap {
    padding: 130px 0px;
    background: #f5721f url(../images/round-corner_left.gif) no-repeat top left/128px 128px;
  }
}
.orange-Wrap .container1500 {
  position: relative;
  z-index: 10;
}

.recruit-Wrap {
  overflow: hidden;
}

.txt-decoration_left-Vertical {
  position: relative;
}
.txt-decoration_left-Vertical:before {
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  content: attr(data-text);
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 20rem;
  color: #fff;
  line-height: 1;
  text-shadow: 1px 0 0 #f5721f, 0 1px 0 #f5721f, -1px 0 0 #f5721f, 0 -1px 0 #f5721f;
  writing-mode: vertical-rl;
  opacity: 0.2;
  z-index: 1;
}
@media (min-width: 1700px) {
  .txt-decoration_left-Vertical:before {
    opacity: 1;
  }
}
.txt-decoration_left-Vertical .container1500 {
  position: relative;
  z-index: 2;
}

.txt-decoration_right-Vertical {
  position: relative;
}
.txt-decoration_right-Vertical:before {
  white-space: nowrap;
  opacity: 0.2;
  right: 0;
  position: absolute;
  right: -0.11em;
  top: 50%;
  transform: translate(0, -50%);
  content: attr(data-text);
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 20rem;
  color: #f5721f;
  line-height: 1;
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  writing-mode: vertical-rl;
}
@media (min-width: 1700px) {
  .txt-decoration_right-Vertical:before {
    opacity: 1;
  }
}

.txt-decoration_UD-between {
  position: relative;
}
.txt-decoration_UD-between:before {
  display: none;
}
@media (min-width: 768px) {
  .txt-decoration_UD-between:before {
    line-height: 1.4;
    position: absolute;
    right: 0px;
    top: 0px;
    content: attr(data-text);
    display: inline-block;
    font-family: "Lexend", sans-serif;
    font-size: 16vw;
    color: #f5721f;
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    z-index: 1;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .txt-decoration_UD-between:before {
    font-size: 20rem;
  }
}
.txt-decoration_UD-between:after {
  display: none;
}
@media (min-width: 768px) {
  .txt-decoration_UD-between:after {
    line-height: 1.4;
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: attr(data-text);
    display: inline-block;
    font-family: "Lexend", sans-serif;
    font-size: 16vw;
    color: #f5721f;
    text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
    z-index: 2;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .txt-decoration_UD-between:after {
    font-size: 20rem;
  }
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

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

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

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

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

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

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

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

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

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

.white {
  color: #fff;
}

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

.mb130 {
  margin-bottom: 65px !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;
  }
  .mb130 {
    margin-bottom: 130px !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 */