@charset "UTF-8";

#copyright {
  background: #003954;
  text-align: center;
  color: #fff;
  font-size: 0.6em;
  padding: 1.2em 0;
  letter-spacing: 0.8px;
}
.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  padding: 5em 0;
  background: #fff;
  font-size: 0.9em;
  border-radius: 20px 20px 0 0;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.15);
  margin-top: 4em;
}
#top_page .footer {
  margin-top: 0;
}
.footer_contents {
  display: flex;
}
.footer_logo {
  text-align: center;
}
.footer_logo img {
  max-width: 100%;
  width: 240px;
  padding: 1em;
}
.footer_for-user {
  display: flex;
}
.footer_for-user ul.footer_nav {
  margin-right: 6em;
}
.footer_for-medical {
  padding-left: 3em;
  border-left: 1px solid #a6def5;
}
.footer_for-medical p {
  font-weight: bold;
  margin-bottom: 1em;
}
ul.footer_nav li {
  position: relative;
  margin-bottom: 0.6em;
}
ul.footer_nav li:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #003954;
  border-right: 2px solid #003954;
  transform: rotate(45deg);
  box-sizing: border-box;
}
ul.footer_nav li a {
  margin-left: 1.4em;
  color: #003954;
}

@media screen and (max-width:950px) {
  .footer {
    display: block;
    padding: 0 2em;
    box-sizing: border-box;
  }
  .footer_logo {
    margin-bottom: 1em;
  }
  .footer_contents {
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
  }
  .footer_for-user {
    display: flex;
    margin-bottom: 1em;
    justify-content: center;
    align-items: start;
    text-wrap: nowrap;
  }
  .footer_for-user ul.footer_nav {
    margin: 0;
  }
  .footer_for-user ul.footer_nav:first-of-type {
    margin-right: 1.4em;
  }
  .footer_for-medical {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #a6def5;
    width: 100%;
    padding: 1.4em 0;
  }
}

/* fixed-btn */
a.page_top {
  position: fixed;
  background: #003954;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  right: 20px;
  z-index: 95;
  -webkit-overflow-scrolling: touch;
}
a.page_top .page_top_btn {
  position: relative;
}
a.page_top .page_top_btn:before {
  content: '';
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  box-sizing: border-box;
}


/* .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);
  }
} */
