/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/img/bg02.jpg");
  background-size: 100%;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.4;
}
#page-top a:hover {}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 50px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.nusep_f-bg {
  padding: 2em 0em 0em;
  position: relative;
  background: #EDEDED;
}
.nusep_footer_txt {
  width: 90%;
  margin: 0 auto 1em;
  position: relative;
}
.nusep_footer_txt img {
  width: 30%;
  margin: 0 auto 1.5em;
}
.nusep_footer_txt p {
  font-size: 1.4rem;
  line-height: 2;
}
.nusep_footer_nav {
  display: none;
}
.nusep_f_link {
  font-size: 1.2rem;
  line-height: 2;
  margin: 1.5em auto 0;
}
.nusep_f_link a {
  padding: 0 5px;
}
.nusep_f_icon {}
.nusep_f_icon a {
  display: inline-block;
  padding: 0 10px;
  font-size: 2rem;
}
.nusep_f_icon span {
  display: block;
  font-size: 1.2rem;
}
.nusep_cr {
  margin: 1.5em auto 0;
  font-size: 1.0rem;
  line-height: 3;
  color: #fff;
  background: #000;
}
.nusep_f_contact {
  margin: 0 auto 2em;
  width: 80%;
  border: 1px solid #000;
  padding: 0 0 1.5em;
}
.nusep_f_contact p {
  background: #000000;
  color: #fff;
  letter-spacing: 2px;
  padding: 5px 0;
  font-size: 1.3rem;
}
.nusep_f_contact div {
  margin: 1.5em auto 1em;
  font-size: 1.2rem;
}
.nusep_f_contact div i {
  display: block;
  font-size: 2.0rem;
}
.nusep_f_contact div span {
  display: block;
  font-size: 2.2rem;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .nusep_f-bg {
    padding: 5em 0 0em;
    position: relative;
    min-width: 1295px;
  }
  .nusep_footer {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    padding: 0 350px 0 5%;
    position: relative;
  }
  .nusep_footer_txt {
    width: calc(100% - 670px);
    margin: 0 0 0 0;
    text-align: left;
  }
  .nusep_footer_txt p {
    font-size: 1.3rem;
  }
  .nusep_footer_txt img {
    width: 110px;
  }
  .nusep_footerr {
    width: 670px;
    position: relative;
  }
  .nusep_footer_nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: flex-end;
  }
  .nusep_footer_nav li {
    width: auto;
    margin: 0 0 0 15px;
    font-size: 1.4rem;
  }
  .nusep_f_icon {
    position: absolute;
    right: 0;
    bottom: 0px;
    text-align: right;
  }
  .nusep_f_icon a {
    text-align: center;
  }
  .nusep_f_link {
    margin: 1.5em 0 0;
    text-align: right;
  }
  .nusep_cr {
    font-size: 1.1rem;
    margin: 5em auto 0;
  }
  .nusep_f_contact {
    position: absolute;
    top: -5em;
    right: 0;
    margin: 0em;
    width: 300px;
    padding: 0 0 1.5em;
  }
  .nusep_f_contact div {
    margin: 1.3em auto 1em;
  }
}
@media screen and (min-width:768px) and (max-width:1295px) {
  .nusep_f-bg {
    min-width: 100%;
  }
  .nusep_footer {
    padding: 0 8% 0 8%;
  }
  .nusep_f_contact {
    display: none;
  }
  .nusep_cr {
    font-size: 1.1rem;
    margin: 3em auto 0;
  }
}