@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Sans Japanese */
/* Yuji Syuku */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================
  base  PC
  ページ全体に付与するcss
  header/footer/フォームなど共通箇所
========================================= */
body {
  /* fontはcom-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  color: #222222;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a[href^="fax:"] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/*	parts  PC
共通パーツの設定
------------------------------------ */
a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/* 横幅480px以内で改行したくないときにspanにクラスをつけて使う */
.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.fle {
  display: flex;
}

.fle-between {
  justify-content: space-between;
}

.fle-around {
  justify-content: space-around;
}

.fle-center {
  justify-content: center;
}

/* =========================================
  header  PC
  ヘッダー部分（MV含む）のcss
========================================= */
/*	headline  PC
ロゴ、ヘッダーナビ、ヘッダーリンク等
------------------------------------ */
#header {
  width: 100%;
}
#header .headline {
  width: 100%;
  padding: 0 10px;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
}
#header .headline-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .current {
  color: #127097 !important;
  position: relative;
}
#header .current::before {
  position: absolute;
  content: "";
}
#header .current::before {
  width: 100%;
  height: 4px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background-color: #127097;
}
#header .contact {
  padding-top: 20px;
}
#header .contact-list {
  gap: 30px;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  justify-content: end;
  margin-top: 15px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 33px;
}
#gnav .list-link {
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#gnav .list-link:hover {
  color: #127097;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv {
  padding-top: 120px;
}
#top-mv .mv {
  position: relative;
  width: 100%;
  height: 43.75vw;
}
#top-mv .mv-img {
  display: block;
  width: 76.8vw;
  margin-left: auto;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 21.5% 100%);
}
#top-mv .mv-ttl {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
#top-mv .mv-ttl01 {
  width: 53vw;
}
#top-mv .mv-ttl02 {
  width: 47.65vw;
}
#top-mv .mv-ttl03 {
  width: 50.31vw;
}

#fade {
  position: relative;
  width: 100%;
  height: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
#fade li {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#fade li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fade li.active {
  opacity: 1;
  z-index: 1;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 99;
}
.fixed-contact {
  display: flex;
  align-items: center;
  width: 80px;
  height: 270px;
  padding-top: 70px;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #005f2f;
  border-radius: 40px 40px 8px 40px;
  position: relative;
  font-size: 23px;
  font-size: 2.3rem;
}
.fixed-contact::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.fixed-contact::after {
  width: 25px;
  height: 31px;
  transform: translateX(-50%);
  left: 50%;
  top: 30px;
  background: url(/img/all/fixed-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}
.fixed-contact:hover::after {
  transform: translateX(-50%) scale(0.95);
}
.fixed-page {
  margin-top: 30px;
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #fff !important;
}
#footer .bg {
  background-color: #26765b;
}
#footer .logo {
  display: block;
  width: 360px;
  margin: 0 auto;
}
#footer .link-list {
  width: 100%;
  gap: 30px;
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;
}
#footer .com-tel-num {
  letter-spacing: 0.04em;
  padding-left: 40px;
  color: #fff;
  background: url(/img/all/tel-ico-white.png) no-repeat left 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 38px;
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  #footer .com-tel-num {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
#footer .line {
  width: 260px;
  height: 55px;
  color: #fff;
  background-color: unset;
  border: 1px solid #fff;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .line {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .mail {
  width: 260px;
  height: 55px;
  color: #fff;
  background-color: unset;
  border: 1px solid #fff;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .mail {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .nav {
  margin-top: 50px;
}
#footer .list {
  justify-content: center;
}
#footer .list:nth-of-type(n + 2) {
  margin-top: 10px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 15px;
}
#footer .list-link {
  letter-spacing: 0.04em;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy {
  letter-spacing: 0.04em;
  text-align: center;
  padding: 15px 10px;
  color: #005f2f;
  background-color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  color: #005f2f;
}
#footer .copy-link {
  color: #005f2f;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv {
  padding-top: 120px;
}
#sv .sv {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1921px) {
  #sv .sv {
    height: 29.1vw;
  }
}
#sv .sv-img {
  position: absolute;
  width: 1600px;
  height: 500px;
  top: 0;
  left: calc(50% - 640px);
}
#sv .sv-img::before {
  position: absolute;
  content: "";
  width: 102.8%;
  height: 76%;
  bottom: -30px;
  left: -45px;
  background-color: #e8eeeb;
  background-size: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  #sv .sv-img {
    width: 83vw;
    height: 26vw;
  }
}
#sv .sv-ttl {
  position: absolute;
  letter-spacing: 0.04em;
  padding: 8px 43px;
  transform: translateY(-50%);
  top: 45%;
  left: calc(50% - 675px);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1450px) {
  #sv .sv-ttl {
    left: 30px;
  }
}
#sv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) skewX(-25deg);
  top: 50%;
  left: 50%;
  background-image: linear-gradient(to right, #005f07, #00866e);
  z-index: -1;
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-service {
  background: url(/img/sv/sv-service.png) no-repeat left center/cover;
}
#sv .sv-export {
  background: url(/img/sv/sv-export.png) no-repeat left center/cover;
}
#sv .sv-import {
  background: url(/img/sv/sv-import.png) no-repeat left center/cover;
}
#sv .sv-flow {
  background: url(/img/sv/sv-flow.png) no-repeat left center/cover;
}
#sv .sv-company {
  background: url(/img/sv/sv-company.png) no-repeat left center/cover;
}
#sv .sv-news {
  background: url(/img/sv/sv-news.png) no-repeat left center/cover;
}
#sv .sv-site {
  background: url(/img/sv/sv-site.png) no-repeat left center/cover;
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.png) no-repeat left center/cover;
}
#sv .sv-error {
  background: url(/img/sv/sv-error.png) no-repeat left center/cover;
}
#sv .sv-contact {
  background: url(/img/sv/sv-contact.png) no-repeat left center/cover;
}
#sv .sv-complete {
  background: url(/img/sv/sv-complete.png) no-repeat left center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    height: 25px;
    padding: 0 2%;
  }
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 20px;
  margin: auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(3) {
  display: inline;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb li,
.breadcrumb a {
  color: #222222;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #222222;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 5px;
  color: #222222;
}

/* =========================================

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .com-inner,
  .bread-inner {
    width: 100% !important;
  }
  .breadcrumb {
    display: none;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  #header .headline {
    display: flex;
    align-items: center;
    padding: 15px 10px;
  }
  #header .logo {
    width: 200px;
  }
  #header .current {
    color: #fff !important;
  }
  #header .current::before {
    display: none;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv {
    padding-top: 60px;
  }
  #top-mv .mv {
    height: 68.57vw;
    min-height: 240px;
  }
  #top-mv .mv-img {
    width: 100%;
  }
  #top-mv .mv-ttl {
    width: 350px;
    transform: unset;
    top: unset;
    bottom: -40px;
    left: -30px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .hamburger-drawer {
    position: fixed;
    top: 6px;
    right: 10px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger-drawer-icon {
    width: 100%;
    height: 100%;
  }
  .hamburger-drawer-line {
    fill: none;
    stroke: #005f2f;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer.active .hamburger-drawer-line {
    stroke: #005f2f;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .nav-list {
    padding: 75px 15px 30px;
  }
  .nav-list-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-list.active .nav-list-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-list.active .nav-list-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-list.active .nav-list-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .nav-list.active .nav-list-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .nav-list.active .nav-list-item:nth-child(5) {
    transition-delay: 0.7s;
  }
  .nav-list.active .nav-list-item:nth-child(6) {
    transition-delay: 0.8s;
  }
  .nav-list.active .nav-list-item:nth-child(7) {
    transition-delay: 0.9s;
  }
  .nav-list.active .nav-list-item:nth-child(8) {
    transition-delay: 1s;
  }
  .nav-list.active .nav-list-item:nth-child(9) {
    transition-delay: 1.1s;
  }
  .nav-list.active .nav-list-item:nth-child(10) {
    transition-delay: 1.2s;
  }
  .nav-list.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list-link {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #222222;
    text-decoration: none;
    overflow: hidden;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #26765b;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }
  #drawer-menu.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  /*	gnav-add  SP
  ------------------------------------ */
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .link-list {
    display: block;
  }
  #drawer-nav .link-list-item:nth-of-type(n + 2) {
    margin-top: 15px;
  }
  #drawer-nav .com-tel-num {
    letter-spacing: 0.04em;
    padding-left: 25px;
    color: #fff;
    background: url(/img/all/tel-ico-white.png) no-repeat left 4px/18px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 38px;
    font-size: 3.8rem;
  }
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #drawer-nav .com-tel-num {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  #drawer-nav .line {
    width: 260px;
    height: 55px;
    color: #fff;
    background-color: unset;
    border: 1px solid #fff;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #drawer-nav .line {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  #drawer-nav .mail {
    width: 260px;
    height: 55px;
    color: #fff;
    background-color: unset;
    border: 1px solid #fff;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #drawer-nav .mail {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer-info {
    display: flex;
    margin: 5% auto 0;
    flex-direction: column;
    align-items: center;
    /* 初期状態: 非表示 + 下方向オフセット */
    /* ドロワーが開いたとき（#drawer-menu.active）に表示させる */
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #drawer-menu.active .drawer-info {
    /* nav リストのアニメーションの後に順次出現させる遅延を付与 */
  }
  #drawer-menu.active .drawer-info > * {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer-menu.active .drawer-info > *:nth-child(1) {
    transition-delay: 0.9s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(2) {
    transition-delay: 1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(3) {
    transition-delay: 1.1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(4) {
    transition-delay: 1.2s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(5) {
    transition-delay: 1.3s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(6) {
    transition-delay: 1.4s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(7) {
    transition-delay: 1.5s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(8) {
    transition-delay: 1.6s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(9) {
    transition-delay: 1.7s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(10) {
    transition-delay: 1.8s;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .current {
    border-bottom: none !important;
  }
  #footer .logo {
    width: 220px;
  }
  #footer .link-list {
    display: block;
  }
  #footer .link-list-item:nth-of-type(n + 2) {
    margin-top: 15px;
  }
  #footer .com-tel-num {
    padding-left: 25px;
    background: url(/img/all/tel-ico-white.png) no-repeat left 4px/18px;
  }
  #footer .line {
    margin: 0 auto;
  }
  #footer .mail {
    margin: 0 auto;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #fff;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 0;
  }
  #footer .list-sp {
    display: flex !important;
  }
  #footer .list-item {
    width: 50%;
    margin-left: 0;
  }
  #footer .list-item:first-of-type {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #fff;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #fff;
  }
  #footer .list-item:last-of-type {
    border-bottom: none;
  }
  #footer .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1.2;
    height: 60px;
    text-align: center;
    padding: 10px 5px;
  }
  #footer .list-link::after {
    display: none;
  }
  #sv {
    padding-top: 60px;
  }
  #sv .sv {
    height: 250px;
  }
  #sv .sv-img {
    width: 200%;
    height: 250px;
    left: -100px;
  }
  #sv .sv-ttl {
    text-align: center;
    padding: 8px 25px;
    white-space: nowrap;
    bottom: unset;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */