@charset "UTF-8";

/*===================================================================
  全ページ共有のCSSを記入
  リセットなどは個別で記入
===================================================================*/
:root {
    /*color*/
    --color-text: #333333;
    --color-blue: #2991D3;
    --color-blk: #111111;
    --color-gray: #EEEEEE;
    --color-wht: #fff;
    --color-red: #B9191F;
    /*font*/
    --font-en: "Bebas Neue", sans-serif;
    --outline-item-before: 95%;
  }

  /*========================
  font-family
========================*/
/* bebas  font*/
.ff-bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* noto sans */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ff-notom {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.ff-notob {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/*===================================================================
    sec-tit
===================================================================*/

/*========================
見出しタイトル
========================*/
.section__ttl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .section__ttl-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .section__ttl-wrap.--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.section__ttl-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1rem;
}

.section__ttl {
  display: inline-block;
}

.section__ttl-jp,
.section__ttl-en {
  line-height: 1;
  opacity: 0;
}

.--jsRect {
  position: relative;
  overflow: hidden;
}
.--jsRect::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  -webkit-transform: translatex(-100%);
          transform: translatex(-100%);
}

.--jsRect.show::before {
  -webkit-animation: showMask 1s forwards;
          animation: showMask 1s forwards;
}
.--jsRect.show .section__ttl-jp,
.--jsRect.show .section__ttl-en {
  -webkit-animation: showElements 0.01s 0.6s forwards;
          animation: showElements 0.01s 0.6s forwards;
}

@-webkit-keyframes showMask {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45%, 50% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes showMask {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  45%, 50% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes showElements {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showElements {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section__ttl-jp {
  position: relative;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.85rem + 0.444vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 35px;
}
.section__ttl-jp::before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(../img/section__ttl.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.section__ttl-en {
  font-family: var(--font-en);
  /* font-size: 138px; */
  font-size: clamp(4.25rem, 1.625rem + 7.778vw, 8.625rem);
}

.section__ttl-jp--sub {
  color: var(--color-blue);
}

.topRecruit .--jsRect::before {
  background-color: var(--color-wht);
}

.post-name-newhouse .section__ttl-en,
.post-name-recruit .section__ttl-en,
.post-name-company .section__ttl-en {
  opacity: 1 !important;
}


/*===================================================================
  リンクボタン
===================================================================*/
.link__btn {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link__btn img {
  width: 32px;
}

.link__btn-inner {
  margin-right: 10px;
  position: relative;
  display: inline;
}
.link__btn-inner::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #444;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.link__btn-inner:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.link__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link__btn .lottie-animation {
  width: 60px;
  height: 52px;
}

.topInstagram__desc-btn.--topYoutube .link__btn-inner::after,
.topRecruit__ttl-btn .link__btn-inner::after {
  background: var(--color-wht);
}


/*===================================================================
  共通css
===================================================================*/
.inner2 {
  width: 90%;
  max-width: 1620px;
  margin: 0 auto;
}

img {
  vertical-align: middle;
  image-rendering: auto;
  width: 100%;
  height: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}


/*========================
    アニメーション
========================*/
.js-fadeUp {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

.--jsFadeupRX {
  opacity: 0;
  -webkit-transform: translateY(30px) rotateX(50deg);
          transform: translateY(30px) rotateX(50deg);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.--jsFadeupRX.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.--jsFadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.--jsFadeup.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.businessArea__tab-contentR .--jsFadeup {
  -webkit-transform: translateY(30px) rotate(45deg);
          transform: translateY(30px) rotate(45deg);
}
.businessArea__tab-contentR .--jsFadeup.show {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.--jsFadeleft {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.--jsFadeleft.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.topFooter-company img {
  opacity: 0;
}
.topFooter-company.--jsRect img {
  -webkit-animation: showElements 0.01s 0.6s forwards;
          animation: showElements 0.01s 0.6s forwards;
}

/*========================
  余白
========================*/
.u-section__mt {
  margin-top: 200px;
}
@media (max-width: 1280px) {
  .u-section__mt {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .u-section__mt {
    margin-top: 50px;
  }
}

.u-section__mb {
  margin-bottom: 120px;
}
@media (max-width: 1280px) {
  .u-section__mb {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .u-section__mb {
    margin-bottom: 60px;
  }
}

.u-section-ttl__mb {
  margin-bottom: 60px;
}
@media (max-width: 1280px) {
  .u-section-ttl__mb {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .u-section-ttl__mb {
    margin-bottom: 10px;
  }
}


/*===================================================================
  body
===================================================================*/
body,html {
  background-color: rgba(255, 255, 255, 0);
}

.page-background::before,
.post-name-home::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 800px;
  height: 960px;
  background-image: url(../img/page-backgroundL.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-background::after {
  content: "";
  display: block;
  width: 40%;
  max-width: 290px;
  height: 600px;
  background-image: url(../img/page-backgroundR.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}



/* .site-body {
  padding-top: 0;
} */

#breadcrumb {
  position: relative;
  z-index: 2;
}

.archive-header {
  position: static;
}

/*===================================================================
  ページタイトル
===================================================================*/
.page-header {
  width: 70%;
  background-position: left !important;
  margin-top: 120px;
}

.page-header-inner {
  max-width: 100%;
}

.page-header-title {
  color: #fff;
  background-color: #333;
  padding: 8px 20px 8px 8%;
  width: fit-content;
  position: absolute;
  left: 0%;
}

.page-header-title::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -49px;
  background-color: #333;
  top: 0;
  width: 50px;
  height: 100%;
}




/*===================================================================
  不動産一覧（カスタムフィールド）
===================================================================*/
.data-fudo-kakaku {
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.data-kakaku-tit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 80px;
    height: 20px;
    border-radius: 5px;
}

.data-kakaku-number {
    margin-left: 15px;
    font-weight: 700;
    
}


/*===================================================================
  部分rest
===================================================================*/
header ol,
header ul,
header li,
header a,
footer ol,
footer ul,
footer li,
footer a {
  text-decoration: none;
  list-style: none;
}






/*===================================================================
    header
===================================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-position {
  width: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.header-position.scroll {
  background-color: #fff;
}
.header-position.active {
  background: none;
}


.header-inner {
  max-width: 1800px;
  width: 92%;
  margin: 0 auto;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  padding-top: 24px;
  width: 147px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: block;
  position: relative;
}
@media (max-width: 1024px) {
  .header-logo {
    padding-top: 14px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    padding-top: 9px;
    width: 124px;
  }
}

.site-logo {
  width: 100%;
  white-space: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .site-logo {
    margin-bottom: 10px;
  }
}

@media (max-width: 1400px) {
  .site-logo.active {
    -webkit-filter: grayscale(100%) brightness(10);
            filter: grayscale(100%) brightness(10);
  }
}


/*===================================================================
    header-menu-sns
===================================================================*/
.header-menu-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: relative;
}
.header-menu-sns::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 25%;
  height: 110px;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 42px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media (max-width: 1400px) {
  .header-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    padding: 60px 20% 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 11;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .header-menu {
    width: 80%;
    top: 80px;
    padding: 40px 20px;
  }
}
@media (max-width: 540px) {
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 80px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .header-menu {
    width: 90%;
  }
}
@media (max-width: 380px) {
  .header-menu {
    width: 100%;
  }
}
.header-menu.open {
  right: 0;
}


.header-list {
  padding-left: 7px;
  padding-right: 7px;
}

@media (max-width: 1400px) {
  .header-list {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 540px) {
  .header-list {
    justify-self: center;
    margin-inline: auto;
    width: 50%;
    padding: 0;
    line-height: 2.4;
  }
}

@media (min-width: 1401px) {
  .header-list--contact,
  .header-list--sns,
  .header-list--address {
    display: none;
  }
}

@media (max-width: 1400px) {
  .header-list--sns,
  .header-list--address {
    width: 100%;
    color: var(--color-wht);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: start;
  }
}
@media (max-width: 540px) {
  .header-list--sns,
  .header-list--address {
    width: 100%;
  }
}

@media (max-width: 1400px) {
  .header-list--address {
    margin: 20px 0;
    font-weight: 500;
  }
  .header-list--address .header-item::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .header-list--address {
    line-height: 1.8;
  }
}


.header-item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-right: 20px;
  text-decoration: none !important;
  color: #333;
}

@media (max-width: 1400px) {
  .header-item {
    color: var(--color-wht);
    font-weight: 500;
    display: inline;
  }
}


.header-item::after {
  content: "";
  width: 1px;
  height: 0px;
  background-color: var(--color-blue);
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media (max-width: 1400px) {
  .header-item::after {
    position: absolute;
    left: 0;
    top: auto;
    content: "";
    width: 100%;
    height: 1px !important;
    background: var(--color-wht);
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

.header-item:hover {
  color: var(--color-blue);
}
@media (max-width: 1400px) {
  .header-item:hover {
    color: var(--color-wht) !important;
  }
}

.header-item:hover::after {
  height: 50px;
}
@media (max-width: 1400px) {
  .header-item:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}


#home .header-list--home .header-item::after,
#company .header-list--company .header-item::after,
#service .header-list--service .header-item::after,
#works .header-list--works .header-item::after,
#car .header-list--car .header-item::after,
#recruit .header-list--recruit .header-item::after {
  height: 50px;
}

#home .header-list--home .header-item,
#company .header-list--company .header-item,
#service .header-list--service .header-item,
#works .header-list--works .header-item,
#car .header-list--car .header-item,
#recruit .header-list--recruit .header-item {
  color: var(--color-blue);
}

/* @media screen and (max-width: 1400px) {
  .header-menu {
    position: fixed;
    top: 120px;
    right: -100%;
    width: 100%;
    padding: 60px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    overflow-y: scroll;
    height: 110vh;
    height: 110dvh;
    z-index: 11;
    display: block;
  }
  .header-menu.open {
    right: 0;
  }
} */

.header-list--sns-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.header-list--sns-list li:not(.header-list--sns-item-line) {
  -webkit-filter: grayscale(100%) brightness(10);
          filter: grayscale(100%) brightness(10);
}

.header-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
}

.header-sns-list {
  padding-left: 5px;
  padding-right: 5px;
}

.header-sns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.header-sns-item::after {
  content: "";
  width: 1px;
  height: 0px;
  background-color: var(--color-blue);
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header-sns-item:hover {
  color: var(--color-blue);
}
.header-sns-item:hover::after {
  height: 50px;
}

@media screen and (max-width: 1400px) {
  .header-sns {
    display: none;
  }
}
/* 背景 */
/*===================================================================
    sp mobmenu
===================================================================*/
@media screen and (min-width: 1401px) {
  .mobmenu-btn {
    display: none;
  }
}
.mobmenu-overlay {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  background-color: rgba(41, 145, 211, 0.9);
  z-index: 10;
  display: none;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.mobmenu-fixed {
  position: fixed;
  z-index: 20;
  top: 50px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  width: 350px;
}

.mobmenu-fixed.open {
  opacity: 1;
  pointer-events: all;
}

.mobmenu-bg {
  width: 0px;
  opacity: 0;
  height: 100vh;
  height: 100dvh;
  margin-top: 75px;
  padding-bottom: 100px;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  margin-left: auto;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.1);
}

.mobmenu-bg.open {
  width: 100%;
  opacity: 1;
}

.mobmenu-btn {
  z-index: 12;
  position: fixed;
  top: 0;
  right: 0;
}

/* openbtn */
.openbtn {
  position: relative;
  z-index: 10;
  cursor: pointer;
  width: 105px;
  height: 110px;
  /* background-color: var(--color-blue); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .openbtn {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .openbtn {
    height: 75px;
    width: 85px;
  }
}
.openbtn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 45%;
  width: 105px;
  height: 100vw;
  background-color: var(--color-blue);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media (max-width: 1024px) {
  .openbtn::before {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .openbtn::before {
    right: 45%;
    width: 75px;
  }
}

/* ボタン内側 */
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 30px;
  background: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 14px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

/* active */
.openbtn.active span:nth-of-type(1) {
  left: 36% !important;
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) {
  .openbtn.active span:nth-of-type(1) {
    left: 32% !important;
  }
}

.openbtn.active span:nth-of-type(2) {
  left: 36% !important;
  top: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .openbtn.active span:nth-of-type(2) {
    left: 32% !important;
  }
}

.mobmenu-text {
  display: block;
  color: var(--color-wht);
  font-family: var(--font-en);
  position: absolute;
  top: 30px;
  /*   bottom: 5px;
    left: 50%;
    transform: translateX(-50%); */
  font-size: 16px;
}



/*===================================================================
    電話、メール　フローティングアイコン
===================================================================*/
.btnTelMail {
  position: fixed;
  z-index: 99;
  right: 1%;
  bottom: 10%;
}

.btnTelMail-tel,
.btnTelMail-mail {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-blk);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 100px;
}
.btnTelMail-tel:hover,
.btnTelMail-mail:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: var(--color-blue);
}
@media (max-width: 767px) {
  .btnTelMail-tel,
  .btnTelMail-mail {
    margin-bottom: 20px;
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 540px) {
  .btnTelMail-tel,
  .btnTelMail-mail {
    margin-bottom: 10px;
    width: 44px;
    height: 44px;
  }
}

.btnTelMail-tel {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .btnTelMail-tel {
    margin-bottom: 20px;
  }
}
@media (max-width: 540px) {
  .btnTelMail-tel {
    margin-bottom: 10px;
  }
}



/*===================================================================
    footer
===================================================================*/
/*========================
CTA
========================*/
.topCta {
  margin-top: 30px;
}
@media (max-width: 1280px) {
  .topCta {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .topCta {
    margin-top: 60px;
  }
}

.topCta-wrap {
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 342px;
  gap: 0 clamp(1.875rem, -8.125rem + 12.5vw, 3.125rem);
}
@media (max-width: 767px) {
  .topCta-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px 0;
    max-width: 506px;
  }
}
@media (max-width: 540px) {
  .topCta-wrap {
    gap: 60px 0;
    min-width: auto;
  }
}

.topCta-wrap__content {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 0px;
  padding-bottom: 60px;
}
@media (max-width: 1280px) {
  .topCta-wrap__content {
    padding-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .topCta-wrap__content {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .topCta-wrap__content {
    max-width: 506px;
    padding-bottom: 0;
  }
}
@media (max-width: 540px) {
  .topCta-wrap__content {
    padding-bottom: 40px;
  }
}
.topCta-wrap__content::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: -32px;
  background-color: var(--color-gray);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 100%;
  height: 33px;
}

.topCta-tel-wrap {
  background: var(--color-gray);
}

.topCta__ttl {
  /* 	font-size: 24px; */
  font-size: clamp(1.25rem, 1.068rem + 0.541vw, 1.5rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .topCta__ttl {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .topCta__ttl {
    font-size: clamp(1.25rem, 0.655rem + 1.762vw, 1.5rem);
    margin-bottom: 0;
  }
}
@media (max-width: 540px) {
  .topCta__ttl {
    margin-top: 0;
  }
}
.topCta__ttl.--line {
  font-size: clamp(1.25rem, 0.976rem + 0.811vw, 1.625rem);
}
@media (max-width: 767px) {
  .topCta__ttl.--line {
    margin-bottom: 30px;
  }
}

.topCta__ttl-span {
  display: block;
  /* 1800/44-800/20 */
  font-size: clamp(1.25rem, 0.05rem + 2.4vw, 2.75rem);
  line-height: 1.4;
}

.topCta__desc {
  margin: 0 auto;
  width: 80%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .topCta__desc {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .topCta__desc {
    margin-bottom: 20px;
    line-height: 1.6;
  }
}

.topCta__telno {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.topCta__telno-link {
  line-height: 1;
  /* 	font-size: 47px; */
  /* 1280pxまで */
  font-size: clamp(2.313rem, -2.688rem + 6.25vw, 2.938rem);
  font-family: var(--font-en);
  position: relative;
  padding-left: 50px;
}
@media (max-width: 1279px) {
  .topCta__telno-link {
    /* 37-31 */
    font-size: clamp(1.938rem, 1.664rem + 0.811vw, 2.313rem);
  }
}
.topCta__telno-link::before {
  content: "";
  display: block;
  width: 30px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(../img/icon_tel2.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.topCta-mail-wrap {
  color: var(--color-wht);
  background: var(--color-blue);
}
.topCta-mail-wrap::before {
  background-color: var(--color-blue);
}

.topCta-mail__address {
  display: inline-block;
  border: 1px solid var(--color-wht);
}

.btnSlot {
  display: inline-block;
  color: var(--color-wht);
  background-color: transparent;
  border-color: var(--color-wht);
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-wht);
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btnSlot:hover {
  background-color: #1a77b3;
  color: white;
}

.btnSlot.btn-switch-text:hover .btn-double-text:before {
  -webkit-transform: translate(-50%, 150%);
          transform: translate(-50%, 150%);
  opacity: 1;
}

.btnSlot.btn-switch-text:active .btn-double-text,
.btnSlot.btn-switch-text:hover .btn-double-text {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}

.btnSlot.btn-switch-text .btn-double-text {
  -webkit-transition: opacity 0.65s, -webkit-transform 0.85s;
  transition: opacity 0.65s, -webkit-transform 0.85s;
  transition: opacity 0.65s, transform 0.85s;
  transition: opacity 0.65s, transform 0.85s, -webkit-transform 0.85s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
          transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.btnSlot.btn-switch-text > span {
  padding: 0px 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

.img-out {
  line-height: 1;
}

/*アイコン*/
.btnSlot img {
  width: 32px;
  /*1920/32-1280/22*/
  width: clamp(1.375rem, 0.125rem + 1.563vw, 2rem);
  margin-right: clamp(0.625rem, 0.25rem + 1.111vw, 1.25rem);
  margin-left: 0px;
  position: relative;
  margin-left: 0px;
}
@media (max-width: 1279px) {
  .btnSlot img {
    /*1279/22-540/16.5*/
    width: clamp(1.031rem, 0.897rem + 0.598vw, 1.375rem);
  }
}

/*テキスト*/
.btnSlot.btn-switch-text .btn-double-text {
  -webkit-transition: opacity 0.65s, -webkit-transform 0.85s;
  transition: opacity 0.65s, -webkit-transform 0.85s;
  transition: opacity 0.65s, transform 0.85s;
  transition: opacity 0.65s, transform 0.85s, -webkit-transform 0.85s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
          transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  font-weight: 600;
  /*1920/46-1280/28*/
  font-size: clamp(1.75rem, -0.5rem + 2.813vw, 2.875rem);
}
@media (max-width: 1279px) {
  .btnSlot.btn-switch-text .btn-double-text {
    /* 28-21 */
    font-size: clamp(1.313rem, 0.993rem + 0.946vw, 1.75rem);
  }
}

.btnSlot.btn-switch-text .btn-double-text:before {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, transform 0.8s;
  transition: opacity 0.5s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
          transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}

.topCta-line-wrap {
  background: var(--color-gray);
}

.topCta-line__info {
  width: 80%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topCta-line__infoL {
  width: calc(100% - 155px);
}
@media (max-width: 1280px) {
  .topCta-line__infoL {
    width: 100%;
  }
}

.topCta-line-account {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .topCta-line-account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.topCta-line-account-link {
  /* 1440/28-1300/19 */
  font-size: clamp(1.188rem, -1.714rem + 3.571vw, 1.5rem);
  font-weight: 500;
  color: var(--color-blk);
  position: relative;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .topCta-line-account-link {
    /* 28-18 */
    font-size: clamp(1.125rem, 0.75rem + 1.111vw, 1.75rem);
  }
}
.topCta-line-account-link::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(../img/icon_lin2.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.topCta-line-desc {
  text-align: left;
}
@media (max-width: 767px) {
  .topCta-line-desc {
    text-align: center;
  }
}

.topCta-line__infoR {
  width: 105px;
}
@media (max-width: 1280px) {
  .topCta-line__infoR {
    display: none;
  }
}
@media (min-width: 1281px) {
  .topCta-line__infoR.--disp1280 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .topCta-line__infoR.--disp1280 {
    display: block;
    width: 150px;
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .topCta-line__infoR.--disp1280 {
    width: 200px;
  }
}

/*========================
採用情報 recruit
========================*/
.topRecruit {
  overflow: hidden;
  background: var(--color-blue);
  padding-top: 90px;
  padding-bottom: 250px;
  /* background-image: url(../img/top__recruit_bg.webp);
  background-position: 530px -150px;
  background-repeat: no-repeat;
  background-size: 90%; */
}
@media (max-width: 767px) {
  .topRecruit {
    background-size: 140%;
    background-position: 230px -40px;
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .topRecruit {
    background-size: 250%;
    background-position: -40px -100px;
    margin-top: 60px;
  }
}

.inner2--relative {
  position: relative;
}

/* 採用情報 背景 */
.mutualVerticalScroll {
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  /*  左から無限ループ */
}
@-webkit-keyframes infinity-scroll-left--tate {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes infinity-scroll-left--tate {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.mutualVerticalScroll .mutualVerticalScroll__contner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  /*1440/50-1280/40*/
  margin-right: clamp(2.5rem, -2.5rem + 6.25vw, 3.125rem);
  margin-top: -50%;
}
@media (max-width: 767px) {
  .mutualVerticalScroll .mutualVerticalScroll__contner {
    /*30-20*/
    margin-right: clamp(1.25rem, -0.237rem + 4.405vw, 1.875rem);
  }
}
.mutualVerticalScroll .mutualVerticalScroll__gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 20px 0px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.mutualVerticalScroll .scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left--tate 80s infinite linear 0.5s both;
          animation: infinity-scroll-left--tate 80s infinite linear 0.5s both;
}
.mutualVerticalScroll .mutualVerticalScroll__gallery-item {
  /*1920/326-480/147*/
  width: clamp(9.188rem, 5.458rem + 12.431vw, 20.375rem);
}
.mutualVerticalScroll .mutualVerticalScroll__gallery-item img {
  width: 100%;
  -webkit-filter: opacity(0.8) contrast(0.5);
          filter: opacity(0.8) contrast(0.5);
}
@media (max-width: 1099px) {
  .mutualVerticalScroll {
    /*余白20px-6px*/
  }
  .mutualVerticalScroll .mutualVerticalScroll__gallery-list {
    gap: clamp(0.375rem, -0.304rem + 2.262vw, 1.25rem) 0;
    padding-left: clamp(0.375rem, -0.304rem + 2.262vw, 1.25rem);
    margin-bottom: clamp(0.375rem, -0.304rem + 2.262vw, 1.25rem);
  }
  .mutualVerticalScroll .mutualVerticalScroll__gallery-item {
    width: clamp(7.063rem, -2.001rem + 30.21vw, 18.75rem);
  }
}
@-webkit-keyframes infinity-scroll-right--tate {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes infinity-scroll-right--tate {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.mutualVerticalScroll .scroll-infinity__list--right {
  -webkit-animation: infinity-scroll-right--tate 80s infinite linear 0.5s both;
          animation: infinity-scroll-right--tate 80s infinite linear 0.5s both;
}

.topRecruit-L1 {
  position: relative;
  z-index: 1;
  width: 100%;
}

.topRecruit-R1 {
  position: absolute;
  top: -50%;
  right: auto;
  left: 0%;
  margin: 0 calc(-50vw + 50%);
  /*左側のみはみ出す場合
     width: calc(50% + 50vw);
      margin-left: calc(-50vw + 50%);*/
  padding-left: calc(50vw - 50% + 0px);
  /*  background-color: var(--color-gray); */
}
@media (max-width: 1099px) {
  .topRecruit-R1 {
    left: -50%;
  }
}
@media (max-width: 767px) {
  .topRecruit-R1 {
    left: auto;
    right: 90%;
  }
}
@media (max-width: 540px) {
  .topRecruit-R1 {
    right: 100px;
  }
}

.topRecruit .section__ttl,
.topRecruit .link__btn-inner {
  color: var(--color-wht);
}

.topRecruit .section__ttl-jp::before {
  background-image: url(../img/section__ttlw.svg);
}

.topRecruit-ttl,
.topRecruit-desc {
  color: var(--color-wht);
  max-width: 640px;
  width: 80%;
}
@media (max-width: 767px) {
  .topRecruit-ttl,
  .topRecruit-desc {
    width: 100%;
  }
}

.topRecruit-ttl {
  /* 1440/36-360/2 */
  font-size: clamp(1.438rem, 1.167rem + 1.204vw, 2.25rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}

.topRecruit-desc {
  margin-bottom: 30px;
}

/*========================
フッター　top__footer
========================*/
footer {
  padding-top: 120px;
}

.footer-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topFooter {
  background: var(--color-gray);
  position: relative;
  /* padding-bottom: 90px; */
  padding-bottom: clamp(2.5rem, 0.22rem + 6.757vw, 5.625rem);
  padding-bottom: 120px;
}
@media (max-width: 1280px) {
  .topFooter {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .topFooter {
    padding-bottom: 50px;
  }
}
.topFooter::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: -159px;
  background-color: var(--color-gray);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 100%;
  height: 160px;
}
@media (max-width: 767px) {
  .topFooter::before {
    top: -99px;
    height: 100px;
  }
}
@media (max-width: 540px) {
  .topFooter::before {
    top: -59px;
    height: 60px;
  }
}

.topFooter-follow-wrap {
  position: relative;
  z-index: 1;
  top: -220px;
}
@media (max-width: 767px) {
  .topFooter-follow-wrap {
    top: -150px;
    margin-bottom: 50px;
  }
}
@media (max-width: 540px) {
  .topFooter-follow-wrap {
    margin-bottom: 30px;
  }
}

.topFooter-follow-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

.topFooter-follow-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}

.topFooter-follow-item {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
.topFooter-follow-item:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

/*フッターナビ*/
.topFooter-nav {
  margin-top: -150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.topFooter-nav__wrap {
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .topFooter-nav__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}

.topFooter-nav__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 2px solid #111;
}
.topFooter-nav__inner:not(:first-child) {
  border-left: none;
}
@media (max-width: 700px) {
  .topFooter-nav__inner:not(:first-child) {
    border-left: 2px solid #111;
    border-top: none;
  }
}

.topFooter-nav__list {
  padding: 30px;
}
@media (max-width: 767px) {
  .topFooter-nav__list {
    padding: 20px;
  }
}
@media (max-width: 700px) {
  .topFooter-nav__list {
    padding: 30px;
  }
}
@media (max-width: 540px) {
  .topFooter-nav__list {
    padding: 20px;
  }
}

.topFooter-nav__item {
  font-weight: 500;
}
.topFooter-nav__item a {
  position: relative;
  display: inline;
  color: #333;
}
.topFooter-nav__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.topFooter-nav__item a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.topFooter-navInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media (max-width: 767px) {
  .topFooter-navInfo {
    margin-bottom: 20px;
  }
}

.topFooter-navInfo__name {
  font-size: 22px;
  font-weight: 500;
  margin-right: 40px;
}

.topFooter-navInfo__address {
  /* font-size: 18px; */
  font-size: clamp(1rem, 0.909rem + 0.27vw, 1.125rem);
  margin-right: 40px;
}

.topFooter-navInfo__map {
  text-decoration: underline;
  display: inline;
}

.topFooter-navInfo__tel {
  margin-right: 1rem;
}

.topFooter-navInfo__tel-link {
  display: inline;
}

.topFooter-navInfo__fax {
  margin-right: 1rem;
}

.topFooter-company {
  /* margin-top: 90px; */
  margin-top: clamp(2.5rem, 0.22rem + 6.757vw, 5.625rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.topFooter-copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.topFooter-copy small {
  font-size: 14px;
  line-height: 5;
}

@media screen and (max-width: 768px) {
  .topFooter-nav__wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .topFooter-navInfo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .topFooter-company {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
