@charset "utf-8";
/* CSS Document */
/*---------------------------------------*/
/*------   Single Post Nav Page    ------*/
/*--------------------------------------*/
.post-nav__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  position: relative; }
  .post-nav__wrapper .post-nav__item:first-child .post-nav__content {
    padding-right: 5px; }
  .post-nav__wrapper .post-nav__item:first-child .post-nav__img + .post-nav__content {
    margin-left: 19px; }
  .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__content {
    padding-left: 5px; }
  .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__img + .post-nav__content {
    margin-right: 19px; }
  .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__img {
    order: 3; }
  .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__content {
    text-align: right; }
    .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__content > *:nth-child(1) {
      margin-top: 0; }
  .post-nav__wrapper .post-nav__item:hover .post-nav__text-01:before {
    width: 100%; }

.post-nav__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center; }

.post-nav__content {
  max-width: 221px; }

.post-nav__img {
  min-width: 69px; }
  .post-nav__img img {
    width: 100px; height: 100px;

    }

.post-nav__text-01 {
  color: #6c7176;
  font-size: 13px;
  line-height: 1.1;
  position: relative;
  display: inline-block; }
  .post-nav__text-01:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    width: 0%;
    height: 1px;
    margin: auto;
    left: 0;
    right: 0;
    background-color: currentColor;
    transition: width 0.2s linear; }

.post-nav__text-02 {
  color: #008dc6;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  transition: color 0.2s linear;
  }

@media (max-width: 991.98px) {
  .post-nav__img {
    display: none; }
  .post-nav__text-02 {
    font-size: 18px; } }

@media (max-width: 991.98px) {
  .post-nav__wrapper .post-nav__item:first-child .post-nav__img + .post-nav__content {
    margin-left: 0; }
  .post-nav__wrapper .post-nav__item:not(:first-child) .post-nav__img + .post-nav__content {
    margin-right: 0; } }

@media (max-width: 575.98px) {
  .post-nav__wrapper {
    align-items: flex-start; }
  .post-nav__text-02 {
    font-size: 15px;
    line-height: 22px; } }

