@charset "UTF-8";

body {
  color: #464646;
  /*font-family: '小塚ゴシック Pro L','Kozuka Gothic Pro Light',sans-serif;フォントのウェイトを指定するとFirefoxで認識できない*/
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
  font-size: 14px;
  font-weight: normal;
}
input[name="company_name"] {
  position: absolute !important;
  left: -9999px !important;
}
.grecaptcha-badge {
  z-index: 9999;
  bottom: 10px !important;
  right: 10px !important;
  transform: scale(0.85);
  opacity: 0.8;
}

/* --

緑10％ #e9f5f3;
緑25％ #c9e7e2;
緑30％ #bee2dc;
緑100％ #28a08c;

グレー #eaeaea;

/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* --------------------- パソコン版 --------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */

@media screen and (min-width: 750px) {

  .mobile { display: none; }

/* -------------------- スライダーボタン -------------------- */

  #page-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    font-size: 14px
  }
  #page-top a {
    text-decoration: none;
    width: 100px;
    padding: 10px 0;
    text-align: center;
    display: block;
  }
  #page-top a img { width: 100%; }
  #page-top a img:hover {
    text-decoration: none;
    opacity: .5;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    transition: .5s;
  }

/* -------------------- アニメーション -------------------- */

  /*下からフェードイン*/
  .fade-in-bottom {
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-bottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*右からフェードイン*/
  .fade-in-right {
    opacity: 0;
    animation-name: fadein-right;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-right {
    0% {
      opacity: 0;
      transform: translateX(150px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
    transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .upDown {
    animation: upDown 5s infinite;
  }
  @keyframes upDown {
    0% { transform:translateY(0px); }
    70% { transform:translateY(0px); }
    80% { transform:translateY(-10px); }
    90% { transform:translateY(0px); }
  }

/* ------------------------ ヘッダー ------------------------ */

  header {
    width: 100%;
    height: 190px;
    position: relative;
  }
  header .backcolor {
    width: 70%;
    height: 190px;
    background-color: #e9f5f3;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  header .headmenu {
    width: 90%;
    margin: 0 auto;
    height: 190px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center; /* ← これを追加（上下中央揃え） */
  }
  header .headmenu h1 {
    display: flex;             /* ← 追加 */
    align-items: center;       /* ← 上下中央 */
    width: 24%;
    height: 100%;
    margin: 0 auto 0 0;
  }
  header .headmenu h1 img {
    width: 100%;
    display: block;
  }
  header .headmenu .head_box {
    width: 60%;
    display: flex;
    height: 190px;
    margin: 0 0 0 auto;
    flex-direction: row;
    justify-content: space-around;
  }
  header .headmenu .head_box .banner_box {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
  }
  header .headmenu .head_box .banner_box img {
    width: 100%;
    display: inline-block;
    padding-top: 15px;
  }
  header .headmenu .head_box .tel_box {
    width: 35%;
    display: inline-block;
    vertical-align: middle;
  }
  header .headmenu .head_box .tel_box img {
    width: 100%;
    display: inline-block;
    padding-top: 25px;
  }
  header .headmenu .head_box .contact a:hover {
    background: #e9f5f3;
    color: #006837;
    transition: .5s;
  }
  header .menu_ber {
    width: 90%;
    text-align: right;
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  header .menu_ber ul {
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  header .menu_ber ul li {
    display: inline-block;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  header .menu_ber ul li:last-child a {
    background-color: #006837;
    border: 1px solid #006837;
    padding: 15px 30px;
    color: white;
  }
  header .menu_ber ul li:last-child a:hover {
    background: #e9f5f3;
    color: #006837;
    transition: .5s;
  }
  header .menu_ber ul li a {
    color: #666;
    font-weight: 500;
    transition: .3s;
    text-decoration: none;
    position: relative;
    text-align: center;
  }
  header .menu_ber ul li a::after {
    content: '';
    width: 105%;
    height: 1px;
    background: #28a08c;
    position: absolute;
    left: -5px;
    bottom: -12px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
  }
  header .menu_ber ul li a:hover::after { transform: scale(1, 1); }
  header .menu_ber ul li:last-child a::after {
    content: '';
    width: 105%;
    height: 2px;
    background: #006837;
    position: absolute;
    left: -5px;
    bottom: -9px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
  }

/* --------------------------- top --------------------------- */

  #top {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../img/content06.jpg');
    background-size: cover;       /* 余白なしで画面いっぱい */
    background-position: center;
    text-align: center;
  }
  #top img {
    display: block;
    width: 100%;
  }
  #top h3 {
    font-size: 34px;
    letter-spacing: 5px;
    margin: 0;
    padding: 100px 0 0 0;
    line-height: 1;
    color: white;
  }
  #top h3 span {
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
  }
/*----------------------   パンくず   ----------------------*/

  #nav {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
  }
  .Breadcrumb {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  .Breadcrumb-ListGroup {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 1em;
  }
  .Breadcrumb-ListGroup-Item-Link[href] {
    color: #006837;
    text-decoration: none;
  }
  .Breadcrumb-ListGroup-Item-Link[href]:hover { opacity: 0.5; }
  .Breadcrumb-ListGroup > * + * { margin-left: 0.5em; }
  .Breadcrumb-ListGroup > * + *::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }

/* ------------------------ content01 ------------------------ */

  #content01 {
    width: 100%;
    background-color: #eaeaea;
    margin: 0;
    padding: 100px 0 0;
  }
  #content01 h3 {
    text-align: center;
    font-size: 36px;
    letter-spacing: 5px;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  #content01 h3 span {
    font-size: 18px;
    letter-spacing: 1px;
    color: #006837;
  }
  #content01 p {
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 40px 0 10px;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 1px;
  }
  #content01 form {
    width: 400px;
    margin: 40px auto 80px;
    background: #f2f2f2;
    padding: 40px;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
  }
  #content01 label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 3;
    position: relative;
  }
  #content01 label::after {
    content: "必須";
    background: #b71c1c;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 10px;
  }
  #content01 input ,
  #content01 textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  #content01 button {
    display: block;
    width: 100%;
    background-color: #006837;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  #content01 button:hover { opacity: .7; }
  #content01 .contact_button {
  display: flex;
  width: 100%;
  height: 180px;
}

/* 共通設定 */
#content01 .contact_button a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.5;
  transition: color 0.3s ease;
  padding: 55px 60px;
  box-sizing: border-box;
}

#content01 .contact_button a span {
  font-size: 14px;
}

/* 左（明るい緑） */
#content01 .contact_button a.left {
  text-align: right;
  background-color: #8ac75d;
  padding-right: 100px;
}

/* 右（濃い緑） */
#content01 .contact_button a.right {
  text-align: left;
  background-color: #2f6538;
  padding-left: 100px;
}

/* →（右向き矢印） */
#content01 .contact_button a.left::after {
  content: "";
  position: absolute;
  right: 30px; /* ← ちょい内側で重ね */
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: #fff;
}
#content01 .contact_button a.left::before {
  content: "";
  position: absolute;
  right: 30px; /* ← 棒の端とぴったり接続 */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
}

/* ←（左向き矢印） */
#content01 .contact_button a.right::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: #fff;
}
#content01 .contact_button a.right::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
}

/* hover時 */
#content01 .contact_button a:hover {
  color: rgba(255,255,255,0.7);
}
#content01 .contact_button a:hover::before,
#content01 .contact_button a:hover::after {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* -------------------- フッター -------------------- */

  footer {
    width: 100%;
    height: 200px;
    text-align: center;
    line-height: 3;
    font-size: 12px;
  }
  footer img {
    display: block;
    margin: 80px auto 50px;
    width: 300px;
  }
  footer small {
    font-size: 12px;
    letter-spacing: 1.25px;
  }

}
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* -------------------- レスポンシブ -------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* --

緑10％ #e9f5f3;
緑25％ #c9e7e2;
緑30％ #bee2dc;
緑100％ #28a08c;
グレー #eaeaea;

text-align: justify;
text-justify: inter-ideograph;

 */
@media screen and (max-width: 749px) {
  header .headmenu ,
  header .menu_ber ,
  header .head_box ,
  header .tel_box ,
  header .contact { display: none; }

  body { font-size: 14px; }
  html, body { overflow-x: hidden; }

/* ------------------------ ヘッダー ------------------------ */

  header {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  header .headmenu {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  header .headmenu h1 {
    display: flex;
    align-items: center;
    width: 60%;
    margin: 0 auto 0 0;
    padding-left: 10px;
  }
  header .headmenu .head_box { display: none; }
  header .mobile nav.globalMenuSp {
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    background: rgba(233, 245, 243, .95);
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
  }
  header .mobile nav.globalMenuSp ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  header .mobile nav.globalMenuSp ul li {
    font-size: 14px;
    list-style-type: none;
    width: 100%;
    border-top: 1px solid #464646;
  }
  header .mobile nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  header .mobile nav.globalMenuSp ul li a {
    display: block;
    width: 90%;
    height: 55px;
    line-height: 55px;
    color: #666;
    text-decoration: none;
    margin: 0 auto;
  }
  header .mobile nav.globalMenuSp img {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }
  header .mobile nav.globalMenuSp.active { transform: translateY(0%); }
  header .mobile .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(233, 245, 243, .9);
    z-index: 10;
  }
  header .mobile .navToggle {
    display: block;
    position: fixed;
    right: 27px;
    top: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  header .mobile .navToggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 3px #006837;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }
  header .mobile .navToggle span:nth-child(1) { top: 5px; }
  header .mobile .navToggle span:nth-child(2) { top: 14px; }
  header .mobile .navToggle span:nth-child(3) { top: 23px; }
  header .mobile .navToggle span:nth-child(4) {
    border: none;
    font-size: 12px;
    font-weight: bold;
    top: 32px;
    color: #006837;
  }
  header .mobile .navToggle.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .mobile .navToggle.active span:nth-child(2),
  header .mobile .navToggle.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header img {
    width: 100%;
    display: block;
  }

/* --------------------------- top --------------------------- */

  #top {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../img/content06.jpg');
    background-size: cover;       /* 余白なしで画面いっぱい */
    background-position: center;
    text-align: center;
  }
  #top img {
    display: block;
    width: 100%;
  }
  #top h3 {
    font-size: 34px;
    letter-spacing: 5px;
    margin: 0;
    padding: 70px 0 0 0;
    line-height: 1;
    color: white;
  }
  #top h3 span {
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
  }

/*----------------------   パンくず   ----------------------*/

  .Breadcrumb {
    width: 95%;
    display: block;
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
  }
  .Breadcrumb-ListGroup {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 1em;
  }
  .Breadcrumb-ListGroup-Item-Link[href] {
    color: #006837;
    text-decoration: none;
  }
  .Breadcrumb-ListGroup-Item-Link[href]:hover { opacity: 0.5; }
  .Breadcrumb-ListGroup > * + * { margin-left: 0.5em; }
  .Breadcrumb-ListGroup > * + *::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }

/* ------------------------ content01 ------------------------ */

  #content01 {
    width: 100%;
    background-color: #eaeaea;
    margin: 0;
    padding: 100px 0 50px;
    text-align: center;
  }
  h3 {
    text-align: center;
    font-size: 36px;
    letter-spacing: 5px;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
   h3 span {
    font-size: 18px;
    letter-spacing: 1px;
    color: #006837;
  }
  #content01 form {
    width: 90%;
    margin: 40px auto 80px;
    background: #f2f2f2;
    padding: 40px 10px;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
  }
  #content01 label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 3;
    position: relative;
    text-align: left;
  }
  #content01 label::after {
    content: "必須";
    background: #b71c1c;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 10px;
  }
  #content01 input ,
  #content01 textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  #content01 button {
    display: block;
    width: 100%;
    background-color: #006837;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  #content01 button:hover { opacity: .7; }
  #content01 .contact_button {
    display: flex;
    width: 100%;
    height: 180px;
  }
  /* 共通設定 */
  #content01 .contact_button a {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    line-height: 1.5;
    transition: color 0.3s ease;
    padding: 55px 60px;
    box-sizing: border-box;
    text-align: center;
  }
  #content01 .contact_button a span { font-size: 14px; }
  /* 左（明るい緑） */
  #content01 .contact_button a.left {
    background-color: #8ac75d;
    padding-right: 100px;
  }
  /* 右（濃い緑） */
  #content01 .contact_button a.right {
    background-color: #2f6538;
    padding-left: 100px;
  }
  /* →（右向き矢印） */
  #content01 .contact_button a.left::after {
    content: "";
    position: absolute;
    right: 30px; /* ← ちょい内側で重ね */
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 2px;
    background: #fff;
  }
  #content01 .contact_button a.left::before {
    content: "";
    position: absolute;
    right: 30px; /* ← 棒の端とぴったり接続 */
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 8px;
    height: 8px;
  }
  /* ←（左向き矢印） */
  #content01 .contact_button a.right::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 2px;
    background: #fff;
  }
  #content01 .contact_button a.right::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 8px;
    height: 8px;
  }
  #content01 .contact_button {
    flex-direction: column;
    height: auto;
  }
  #content01 .contact_button a {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
  }
  #content01 .contact_button a.left,
  #content01 .contact_button a.right { padding: 40px 20px; }
  #content01 .contact_button a.left::after,
  #content01 .contact_button a.right::after,
  #content01 .contact_button a.left::before,
  #content01 .contact_button a.right::before { display: none; /* スマホでは矢印を非表示にする場合 */ }
  /* 縦並びの間にスペース */
  #content01 .contact_button a + a { margin-top: 10px; }


/* -------------------- フッター -------------------- */

  footer {
    width: 100%;
    height: 200px;
    text-align: center;
    line-height: 3;
    font-size: 12px;
  }
  footer img {
    display: block;
    margin: 80px auto 50px;
    width: 80%;
  }
  footer small {
    font-size: 12px;
    letter-spacing: 1.25px;
  }

/* -------------------- スライダーボタン -------------------- */

  #page-top {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 10px;
    font-size: 14px;
    z-index: 10;
  }
  #page-top a {
    text-decoration: none;
    width: 80px;
    padding: 10px 0;
    text-align: center;
    display: block;
  }
  #page-top a img { width: 100%; }
  #page-top a img:hover {
    text-decoration: none;
    opacity: .5;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    transition: .5s;
  }

/* -------------------- アニメーション -------------------- */

  /*下からフェードイン*/
  .fade-in-bottom {
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-bottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /*右からフェードイン*/
  .fade-in-right {
    opacity: 0;
    animation-name: fadein-right;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-right {
    0% {
      opacity: 0;
      transform: translateX(150px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
    transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .upDown { animation: upDown 5s infinite; }
  @keyframes upDown {
    0% { transform:translateY(0px); }
    70% { transform:translateY(0px); }
    80% { transform:translateY(-10px); }
    90% { transform:translateY(0px); }
  }
}