@charset "utf-8";

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

footer.css

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

/* ----------
breadcrumb
---------- */
.breadcrumb{
  margin-top: 6.0rem;
  padding: 0 3.0rem;
  border-top: solid 1px #e1e2e3;
}

.breadcrumb ul{
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  max-width: 1236px;
}

.breadcrumb ul li{
  padding: 1.0rem 1.6rem;
  position: relative;
  font-size: max(1.3rem, 12px);
}

.breadcrumb ul li:first-of-type{
  padding-left: 0;
}

.breadcrumb ul li:not(:first-of-type)::before{
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.1rem;
  height: 1.6rem;
  background-color: #a8a8a8;
  transform: rotate(20deg);
}

.breadcrumb ul li a{
  color: #005bac;
}

.breadcrumb ul li a:hover{
  text-decoration: underline;
}

/* ----------
nav_footer
---------- */
.nav_footer{
  padding-top: 2.0rem;
}

.nav_footer ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_footer ul li{
  padding: 0.4rem 1.6rem;
  position: relative;
  font-size: max(1.3rem, 12px);
}

.nav_footer ul li:not(:first-of-type)::before{
  content: '';
  position: absolute;
  top: 0.8rem;
  right: 0;
  left: 0;
  width: 1px;
  height: 1.6rem;
  background-color: #ccc;
  background-size: 1.0rem 1.0rem;
}

.nav_footer ul li a:hover{
  text-decoration: underline;
}

#footer{
  padding-bottom: 4.0rem;
  border-top: solid 1px #e1e2e3;
  background-color: #f6f6f6;
}

#copyright{
  color: #999;
  font-size: max(1.3rem, 12px);
  text-align: center;
  letter-spacing: 0.03rem;
}

#pagetop{
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 1;
}

#pagetop.scroll{
  display: block;
}

#pagetop a{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5.6rem;
  height: 5.6rem;
}

#pagetop a::before{
  content: '';
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5.6rem;
  height: 5.6rem;
  background-color: #005aaa;
  transition: all 0.3s;
}

#pagetop a::after{
  content: '';
  margin: auto;
  display: block;
  position: absolute;
  top: 2.6rem;
  right: 0;
  left: 0;
  width: 1.0rem;
  height: 1.0rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s;
  transform: rotate(-45deg);
}

#pagetop a:hover::after{
  top: 2.2rem;
}

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

media queries

=============*/
/*-------------
タブレット
--------------*/
@media (max-width: 959px) {
  .breadcrumb ul{
    padding: 10px 0;
    display: block;
  }

  .breadcrumb ul li{
    padding: 0 5px 0;
    display: inline-block;
    line-height: 1.4;
  }

  .breadcrumb ul li a{
    line-height: 1.2;
  }

  .breadcrumb ul li:not(:first-of-type)::before{
    left: -4px;
  }
}
