@charset "utf-8";

.hikari-lowerPage {
    padding-top: 0;
}

body.sideOpen .content__wrapper {
    padding-left: 0;
}

.commonFooter__toTop {
    margin-bottom: 60px;
    background-color: #eaeaea;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    color: #000;
    padding: 24px 0;
    transition: all .3s;
  }
  
  .commonFooter__toTop:hover, .commonFooter__toTop:active {
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px rgba(112, 112, 112, 0.3);
  }
  
  .commonFooter__toTop span {
    display: inline-block;
    position: relative;
  }
  
  .commonFooter__toTop span:before {
    content: "";
    position: absolute;
    left: -22px;
    transform: translate(0, -50%);
    top: 50%;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #424242 transparent;
  }

@media screen and (max-width: 559px) {
    .commonFooter__toTop {
        background-color: #eaeaea;
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
        font-size: 3.2vw;
        text-align: center;
        font-weight: bold;
        padding: 4.8vw 0;
    }
    .commonFooter__toTop:hover, .commonFooter__toTop:active {
        cursor: pointer;
    }
}