@charset "UTF-8";

/* =========================================
  btn
========================================= */

/*黒の共通ボタンのhover色変化追加 2018.2.27*/
a.btn-medium-b:hover {
  background: #067cc0;
}

/*メニューボタンの色変更 2018.3.1*/
.menu-nav {
  background: #067cc0 !important;
  background-color: #067cc0 !important;
  background-image:url(/assets/img/menu-nav-bg.png);
  background-repeat: repeat;
}

/*ページトップ 2018.3.5*/
.btn-pagetop a.pagetop {
    position: fixed;
    display: block;
    bottom: 0;
    right: 0;
    z-index: 300;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    background: #d3cece;
    border-radius: 0;
}
.btn-pagetop a.pagetop:after {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    margin-top: -5px;
    margin-right: -5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transition: .1s linear;
  -moz-transition: .1s linear;
  -o-transition: .1s linear;
  -ms-transition: .1s linear;
}
.btn-pagetop a.pagetop:hover:after {
  margin-top: -10px;
}