.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;
  width: calc(100% + 12px);
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
}

@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: 64px;
  height: 64px;
  margin: 0 6px;
  border: 1px solid #3A4764;
  border-radius: 2px;
  background: #fff;
  color: #3A4764;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-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.4rem;
  }
}

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

.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: #3A4764;
  color: #fff;
}

.wp-pagenavi .current::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(131, 174, 181, 0.14);
  -webkit-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 2px;
}

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

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

@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 .nextpostslink,
.wp-pagenavi .previouspostslink {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  width: 140px;
  white-space: nowrap;
  font-size: 1.8rem;
}

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

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

@media screen and (max-width: 480px) {
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    width: calc(50% - 12px);
  }
}

.wp-pagenavi .nextpostslink:hover::before,
.wp-pagenavi .previouspostslink:hover::before {
  border-color: transparent transparent transparent #fff;
}

.wp-pagenavi .previouspostslink {
  padding-left: 32px;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .previouspostslink {
    font-size: 1.4rem;
  }
}

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

.wp-pagenavi .previouspostslink::before {
  content: '';
  position: absolute;
  background: url("/general/img/icon/arrow-news.svg");
  width: 26px;
  height: 8px;
  left: 32px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 960px) {
  .wp-pagenavi .previouspostslink::before {
    left: 16px;
  }
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .previouspostslink::before {
    left: 8px;
  }
}

.wp-pagenavi .previouspostslink:hover::before {
  background: url("/general/img/icon/arrow-wht.svg");
}

.wp-pagenavi .nextpostslink {
  padding-right: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .nextpostslink {
    font-size: 1.4rem;
  }
}

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

.wp-pagenavi .nextpostslink::before {
  content: '';
  position: absolute;
  background: url("/general/img/icon/arrow-news.svg");
  width: 26px;
  height: 8px;
  right: 32px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

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

@media screen and (max-width: 640px) {
  .wp-pagenavi .nextpostslink::before {
    right: 8px;
  }
}

.wp-pagenavi .nextpostslink:hover::before {
  background: url("/general/img/icon/arrow-wht.svg");
}

.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 40px 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: 64px;
  background: #fff;
  border: 1px solid #3A4764;
  border-radius: 2px;
  color: #3A4764;
  font-size: 1.8rem;
  -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.4rem;
    height: 48px;
  }
}

.pagelink__prev a .ico-arrow, .pagelink__next a .ico-arrow, .pagelink__back a .ico-arrow {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

.pagelink__prev a:hover .ico-arrow, .pagelink__next a:hover .ico-arrow, .pagelink__back a:hover .ico-arrow {
  fill: #fff;
}

.pagelink__back {
  width: 252px;
}

@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: 140px;
}

@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 {
  padding-left: 32px;
}

.pagelink__prev a::after {
  content: '';
  position: absolute;
  background: url("/general/img/icon/arrow-news.svg");
  width: 26px;
  height: 8px;
  left: 32px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 960px) {
  .pagelink__prev a::after {
    left: 16px;
  }
}

@media screen and (max-width: 640px) {
  .pagelink__prev a::after {
    left: 8px;
  }
}

.pagelink__prev a:hover::after {
  background: url("/general/img/icon/arrow-wht.svg");
}

.pagelink__next a {
  padding-right: 32px;
}

.pagelink__next a::after {
  content: '';
  position: absolute;
  background: url("/general/img/icon/arrow-news.svg");
  width: 26px;
  height: 8px;
  right: 32px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 960px) {
  .pagelink__next a::after {
    right: 16px;
  }
}

@media screen and (max-width: 640px) {
  .pagelink__next a::after {
    right: 8px;
  }
}

.pagelink__next a:hover::after {
  background: url("/general/img/icon/arrow-wht.svg");
}

#archive .news-list {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
  margin-bottom: calc(8px * 5);
}

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

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

#archive .news-list::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  top: -1px;
  background-color: #6DBECC;
}

#archive .news-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;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  position: relative;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #archive .news-list__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item {
    display: block;
  }
}

#archive .news-list__item::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: -1px;
  background-color: #6DBECC;
}

#archive .news-list__item::after {
  content: '';
  position: absolute;
  background: url("/general/img/icon/arrow.svg") no-repeat;
  width: 26px;
  height: 8px;
  right: 20px;
}

@media screen and (max-width: 640px) {
  #archive .news-list__item::after {
    top: 36px;
  }
}

#archive .news-list__item .news-meta__date {
  margin-right: calc(8px * 3);
  font-family: "Roboto", sans-serif;
  color: #D6D6D6;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .news-meta__date {
    margin-right: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .news-meta__date {
    margin-right: calc((8px * 3) * 0.5);
  }
}

#archive .news-list__item .news-ttl {
  width: calc(100% - 200px);
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .news-ttl {
    width: calc(100% - 64px);
  }
}

#archive .news-list__item:hover .news-ttl {
  color: #6DBECC;
}

#single .news .news-meta__date {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  color: #6DBECC;
  line-height: 1.3;
}

@media screen and (max-width: 640px) {
  #single .news .news-meta__date {
    font-size: 1.4rem;
  }
}

#single .news .news-meta__cate {
  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;
  height: 28px;
  padding: 0 16px;
  background: #999;
  color: #fff;
  font-size: 1.4rem;
}

#single .news .news-ttl {
  margin-bottom: calc(8px * 5);
  padding-bottom: calc(8px * 3);
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #ccc;
}

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

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

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

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

#single .news .news-ttl::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 2px;
  background-color: #6DBECC;
  bottom: -2px;
  left: 0;
}

@media screen and (max-width: 640px) {
  #single .news .news-ttl::after {
    width: 120px;
  }
}

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

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

#single .news .news-dtl {
  margin-bottom: calc(8px * 5);
  word-break: break-all;
}

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

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

#single .news .news-dtl > * {
  word-break: break-all;
}

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

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

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

#single .news .news-dtl h1 {
  margin-bottom: calc(8px * 3);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}

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

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

#single .news .news-dtl h2 {
  margin-bottom: calc(8px * 3);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

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

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

#single .news .news-dtl h3 {
  margin-bottom: calc(8px * 2);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

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

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

#single .news .news-dtl h4 {
  margin-bottom: calc(8px * 1);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

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

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

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

#single .news .news-dtl em {
  font-style: italic;
}

#single .news .news-dtl a {
  color: #6DBECC;
  text-decoration: underline;
}

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

#single .news .news-dtl img {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: calc(8px * 3);
}

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

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

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