/* ----------------------------------------- */
/* 個別記事の下部に表示するページネーション
/* ----------------------------------------- */
.gud_navigation {
  padding: 1em 0;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  overflow: hidden;
  position: relative;
}

.gud_navigation_prev a:hover,
.gud_navigation_next a:hover{
  text-decoration: underline;
}


.gud_navigation_prev{
  padding-left: 24px;
  text-align: left;
}
.gud_navigation_prev:before{
  font-family: 'gud_basic';
  content: "\e870";
  position: absolute;
  left: 0;
}
.gud_navigation_next{
  padding-right: 24px;
  text-align: right;
}
.gud_navigation_next:before{
  font-family: 'gud_basic';
  content: "\e86c";
  position: absolute;
  right: 0;
}

/* PC View */
@media print, screen and (min-width:650px) {
  .gud_navigation {
    font-size: 1.4rem;
  }
  .gud_navigation_prev {
    width:45%;
    float: left;
    margin-right: 5%;
    display: table-cell;
    text-align:left;
  }
  .gud_navigation_next {
    width:45%;
    float: right;
    margin-left: 5%;
    text-align:right;
  }
}

/* Smart Phone View */
@media only screen and (max-width: 649px) {
  .gud_navigation {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .gud_navigation_prev {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;

    padding-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
  .gud_navigation_next {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    
    padding-top: 10px;

  }

}

