.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (max-width: 480px) {
  .wp-pagenavi {
    position: relative;
    padding-bottom: 52px;
  }
}

.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 2px solid #080808;
  background: #080808;
  border-radius: 3px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.wp-pagenavi .page:not(.current):hover,
.wp-pagenavi .current:not(.current):hover,
.wp-pagenavi .nextpostslink:not(.current):hover,
.wp-pagenavi .previouspostslink:not(.current):hover {
  background: #fff;
  color: #080808;
}

.wp-pagenavi .current {
  background: #fff;
  color: #080808;
  font-weight: 600;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  max-width: 80px;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 480px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 104px;
  text-indent: 8px;
  white-space: nowrap;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 72px;
  }
}

@media screen and (max-width: 480px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(50% - 6px);
  }
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: translateY(-50%) rotateZ(-135deg);
  transform: translateY(-50%) rotateZ(-135deg);
}

@media screen and (max-width: 960px) {
  .wp-pagenavi .previouspostslink::after,
  .wp-pagenavi .nextpostslink::after {
    left: 12px;
  }
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  border-color: #080808;
  -webkit-transform: translate(-4px, -50%) rotateZ(-135deg);
  transform: translate(-4px, -50%) rotateZ(-135deg);
}

.wp-pagenavi .nextpostslink {
  text-indent: -8px;
}

@media screen and (max-width: 480px) {
  .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0px;
    bottom: 0;
    left: auto;
  }
}

.wp-pagenavi .nextpostslink::after {
  position: absolute;
  top: 50%;
  right: 18px;
  left: auto;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
  transform: translateY(-50%) rotateZ(45deg);
}

@media screen and (max-width: 960px) {
  .wp-pagenavi .nextpostslink::after {
    right: 12px;
  }
}

.wp-pagenavi .nextpostslink:hover::after {
  border-color: #080808;
  -webkit-transform: translate(4px, -50%) rotateZ(45deg);
  transform: translate(4px, -50%) rotateZ(45deg);
}

.pagelink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .pagelink {
    width: calc( 100% + 12px);
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
}

.pagelink__prev, .pagelink__next, .pagelink__back {
  margin: 0 12px;
}

@media screen and (max-width: 640px) {
  .pagelink__prev, .pagelink__next, .pagelink__back {
    margin: 0 6px;
  }
}

.pagelink__prev a, .pagelink__next a, .pagelink__back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 56px;
  background: #080808;
  border: solid 2px #080808;
  border-radius: 3px;
  color: #fff;
  line-height: 1.4;
  font-size: 1.5rem;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media screen and (max-width: 640px) {
  .pagelink__prev a, .pagelink__next a, .pagelink__back a {
    font-size: 1.3rem;
  }
}

.pagelink__prev a:hover, .pagelink__next a:hover, .pagelink__back a:hover {
  background: #fff;
  color: #080808;
}

.pagelink__back {
  width: 400px;
}

@media screen and (max-width: 960px) {
  .pagelink__back {
    width: 240px;
  }
}

@media screen and (max-width: 640px) {
  .pagelink__back {
    width: calc( 100% - 276px);
  }
}

@media screen and (max-width: 480px) {
  .pagelink__back {
    width: calc( 40% - 12px);
  }
}

.pagelink__prev, .pagelink__next {
  width: 160px;
}

@media screen and (max-width: 960px) {
  .pagelink__prev, .pagelink__next {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .pagelink__prev, .pagelink__next {
    width: calc( 30% - 12px);
  }
}

.pagelink__prev a::after, .pagelink__next a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: translateY(-50%) rotateZ(-135deg);
  transform: translateY(-50%) rotateZ(-135deg);
}

.pagelink__prev a:hover::after, .pagelink__next a:hover::after {
  border-color: #080808;
  -webkit-transform: translate(-4px, -50%) rotateZ(-135deg);
  transform: translate(-4px, -50%) rotateZ(-135deg);
}

.pagelink__next a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  left: auto;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
  transform: translateY(-50%) rotateZ(45deg);
}

.pagelink__next a:hover::after {
  border-color: #080808;
  -webkit-transform: translate(4px, -50%) rotateZ(45deg);
  transform: translate(4px, -50%) rotateZ(45deg);
}

#archive .info-list {
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  border-top: solid 1px #080808;
}

@media screen and (max-width: 960px) {
  #archive .info-list {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .info-list {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#archive .info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 16px 0;
  border-bottom: solid 1px #080808;
}

#archive .info-list .info-date {
  width: 120px;
  padding-left: 8px;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 640px) {
  #archive .info-list .info-date {
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.3rem;
    font-weight: 600;
  }
}

#archive .info-list .info-link {
  position: relative;
  width: calc(100% - 120px);
  padding-right: 32px;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 640px) {
  #archive .info-list .info-link {
    position: initial;
    width: 100%;
    padding-left: 8px;
  }
}

#archive .info-list .info-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #080808;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
  transform: translateY(-50%) rotateZ(45deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#archive .info-list .info-link:hover {
  text-decoration: underline;
}

#archive .info-list .info-link:hover::after {
  -webkit-transform: translate(4px, -50%) rotateZ(45deg);
  transform: translate(4px, -50%) rotateZ(45deg);
}

#single .info {
  margin-bottom: calc(8px * 5);
  padding: 0 8px;
  padding-top: calc(8px * 5);
  padding-bottom: calc(8px * 5);
  border-style: solid;
  border-width: 1px 0;
  border-color: #eee;
}

@media screen and (max-width: 960px) {
  #single .info {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #single .info {
    padding-top: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info {
    padding-top: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #single .info {
    padding-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info {
    padding-bottom: calc((8px * 5) * 0.5);
  }
}

#single .info .info-ttl {
  margin-bottom: calc(8px * 1);
  font-size: 2.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  #single .info .info-ttl {
    margin-bottom: calc((8px * 1) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-ttl {
    margin-bottom: calc((8px * 1) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #single .info .info-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-ttl {
    font-size: 2rem;
  }
}

#single .info .info-date {
  margin-bottom: calc(8px * 3);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 960px) {
  #single .info .info-date {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-date {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

#single .info .info-dtl strong {
  font-weight: bold;
}

#single .info .info-dtl a {
  text-decoration: underline;
}

#single .info .info-dtl a:hover {
  text-decoration: none;
}

#single .info .info-dtl > p:not(:nth-last-of-type(1)) {
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  #single .info .info-dtl > p:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-dtl > p:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single .info .info-dtl .img-l {
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  #single .info .info-dtl .img-l {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-dtl .img-l {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single .info .info-dtl .img-m {
  margin-bottom: calc(8px * 2);
  max-width: 640px;
}

@media screen and (max-width: 960px) {
  #single .info .info-dtl .img-m {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-dtl .img-m {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single .info .info-dtl .img-s {
  margin-bottom: calc(8px * 2);
  max-width: 480px;
}

@media screen and (max-width: 960px) {
  #single .info .info-dtl .img-s {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .info .info-dtl .img-s {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

/*# sourceMappingURL=../../maps/pages/info.css.map */
