@charset "UTF-8";

/* トップに戻るボタン */
#header {
  scroll-margin-top: 100px;
}
.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 100px;
  width: 40px;
  height: 40px;
  text-align: center;
  /* background-color: #0098DB; */
  border-radius: 50px;
  transform: translateX(100px);
  transition: transform 0.5s ease;
  will-change: transform;
  z-index: 20;
}
.scroll-top__link {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
}
.scroll-top__img {
  width: 100%;
  height: 100%;
  display: block;
}
.scroll-top.show {
  transform: translateX(0);
}

.bottom-menu {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  height: 90px;
  padding: 15px 0;
  background-color: #0098DB;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  will-change: transform;
  z-index: 10;
}
.bottom-menu.show {
  transform: translateY(0);
}
.bottom-menu__contents {
  display: flex;
  text-align: center;
}
.bottom-menu__item {
  width: calc(100%/4);
  padding: 5px 0 5px 10px;
  font-size: 0.675rem;
  color:#FFFFFF;
  border-right: solid 1px #FFFFFF;
}
.bottom-menu__item:last-child {
  border: none;
}
.bottom-menu__item--color {
  color: #ffffff;
}
.bottom-menu__img {
  width: 30px;
  height: 30px;
}

/* PC幅 */
@media (min-width:768px) {
  .bottom-menu {
    width: 375px;
  }
}
