@charset "utf-8";
/* CSS Document */
/* ここから */
#header {
  position: fixed;
  z-index: 998;
  bottom: 0;
  height: 50px;
  background-color: rgba(255, 255, 255, .8);
}
#header_logo img {
  width: 57px;
}
/*--------------------------------------------
   基本設定　変更禁止_井上
--------------------------------------------*/
/*----------ふわっ----------*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　----------上に上がる動き----------　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　----------下に下がる動き----------　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------
   基本設定　デザインここから
--------------------------------------------*/
/*メニュー*/
.head_cont {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.nav_cont {
  width: 900px;
  margin: 0 auto;
  padding: 0 50px;
  align-items: center;
  justify-content: center;
}
.btnmail {
  width: 106px;
  margin-right: 15px;
}
.btntel {
  width: 180px;
  margin-right: 10px;
}
.btnform {
  width: 154px;
}
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


/*==========================
            SP
========================== */
/* ------ 500px以下 ------- */
@media (max-width: 750px) {
  
  /*ヘッダー*/
  #header {
    z-index: 10;
    height: 50px;
    width: 100%;
  }
  .mg_splogo {
    margin-top: 0;
    margin-left: 0;
  }
  .nav_cont {
    padding: 0 4px 0 8px;
  }
  .btnmail {
  width: 106px;
  margin-right: 15px;
}
.btntel {
  width: 184px;
  margin-right: 4px;
}
.btnform {
  width: 124px;
}
}