@charset "UTF-8";
/*

ニュース

*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
body.post-type-archive-news,
body.news {
  width: 100%;
  overflow-x: hidden;
  color: #333;
}

body.post-type-archive-news .mv,
body.news .mv {
  position: relative;
  width: 100%;
  height: 515px;
  background-image: url("../../images/news/pc_mv.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .mv,
  body.news .mv {
    background-image: url("../../images/news/sp_mv.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 373px;
  }
}

body.post-type-archive-news .mv::after,
body.news .mv::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
  position: absolute;
  top: 0;
}

body.post-type-archive-news .mv .wrapper,
body.news .mv .wrapper {
  background-color: transparent;
}

body.post-type-archive-news .mv__wrapper,
body.news .mv__wrapper {
  text-align: center;
}

body.post-type-archive-news .mv__wrapper h1,
body.news .mv__wrapper h1 {
  display: inline-block;
  text-align: center;
  line-height: 515px;
  font-size: 54px;
  font-size: 5.4rem;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .mv__wrapper h1,
  body.news .mv__wrapper h1 {
    line-height: 373px;
    font-size: 35px;
    font-size: 3.5rem;
  }
}

body.post-type-archive-news .mv__wrapper h1::after,
body.news .mv__wrapper h1::after {
  content: "";
  width: 46%;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .mv__wrapper h1::after,
  body.news .mv__wrapper h1::after {
    height: 2px;
    bottom: 42%;
  }
}

body.post-type-archive-news .category__wrapper,
body.news .category__wrapper {
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  body.post-type-archive-news .category__wrapper,
  body.news .category__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 991px) {
  body.post-type-archive-news .category__wrapper,
  body.news .category__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

body.post-type-archive-news .category__wrapper li,
body.news .category__wrapper li {
  display: inline-block;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 700;
  margin-top: 5px;
}

body.post-type-archive-news .category__wrapper li:last-of-type a,
body.news .category__wrapper li:last-of-type a {
  border-right: 1px solid #333;
}

@media screen and (max-width: 1199px) {
  body.post-type-archive-news .category__wrapper li,
  body.news .category__wrapper li {
    width: 33%;
    text-align: center;
  }
  body.post-type-archive-news .category__wrapper li:nth-child(3) a,
  body.news .category__wrapper li:nth-child(3) a {
    border-right: 1px solid #333;
  }
}

@media screen and (max-width: 991px) {
  body.post-type-archive-news .category__wrapper li,
  body.news .category__wrapper li {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .category__wrapper li,
  body.news .category__wrapper li {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

body.post-type-archive-news .category__wrapper li a,
body.news .category__wrapper li a {
  display: block;
  padding: 0 20px;
  border-left: 1px solid #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  text-align: center;
}

body.post-type-archive-news .category__wrapper li a:hover,
body.news .category__wrapper li a:hover {
  color: #032959;
}

@media screen and (max-width: 1199px) {
  body.post-type-archive-news .category__wrapper li a,
  body.news .category__wrapper li a {
    padding: 0;
    display: block;
  }
}

body.post-type-archive-news .article,
body.news .article {
  width: 100%;
  margin-top: 50px;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article,
  body.news .article {
    margin-top: 30px;
  }
}

body.post-type-archive-news .article__wrapper,
body.news .article__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__wrapper,
  body.news .article__wrapper {
    display: block;
  }
}

body.post-type-archive-news .article__single,
body.news .article__single {
  width: 47.2%;
  margin-top: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single,
  body.news .article__single {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 15px;
  }
}

body.post-type-archive-news .article__single:nth-child(1), body.post-type-archive-news .article__single:nth-child(2),
body.news .article__single:nth-child(1),
body.news .article__single:nth-child(2) {
  margin-top: 0;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single:nth-child(2),
  body.news .article__single:nth-child(2) {
    margin-top: 15px;
  }
}

body.post-type-archive-news .article__single:nth-last-child(2), body.post-type-archive-news .article__single:last-of-type,
body.news .article__single:nth-last-child(2),
body.news .article__single:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single:nth-last-child(2),
  body.news .article__single:nth-last-child(2) {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
  }
}

body.post-type-archive-news .article__single__detail,
body.news .article__single__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.post-type-archive-news .article__single__detail time,
body.news .article__single__detail time {
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
  width: 110px;
}

@media screen and (max-width: 767px) {
  body.post-type-archive-news .article__single__detail time,
  body.news .article__single__detail time {
    width: 120px;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__detail time,
  body.news .article__single__detail time {
    width: 70px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.post-type-archive-news .article__single__detail .category__wrapper,
body.news .article__single__detail .category__wrapper {
  margin-left: 15px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body.post-type-archive-news .article__single__detail .category__wrapper .single-terms,
body.news .article__single__detail .category__wrapper .single-terms {
  display: block;
  padding: 3px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 5px;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  body.post-type-archive-news .article__single__detail .category__wrapper .single-terms,
  body.news .article__single__detail .category__wrapper .single-terms {
    padding: 3px 10px;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__detail .category__wrapper .single-terms,
  body.news .article__single__detail .category__wrapper .single-terms {
    padding: 3px 7px;
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__detail .category__wrapper,
  body.news .article__single__detail .category__wrapper {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.post-type-archive-news .article__single h2,
body.news .article__single h2 {
  margin-top: 10px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 700;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single h2,
  body.news .article__single h2 {
    margin-top: 7px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.post-type-archive-news .article__single__contents,
body.news .article__single__contents {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  body.post-type-archive-news .article__single__contents,
  body.news .article__single__contents {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__contents,
  body.news .article__single__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
  }
}

body.post-type-archive-news .article__single__contents .contents__eyecatch,
body.news .article__single__contents .contents__eyecatch {
  width: 21.4%;
}

@media screen and (max-width: 991px) {
  body.post-type-archive-news .article__single__contents .contents__eyecatch,
  body.news .article__single__contents .contents__eyecatch {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__contents .contents__eyecatch,
  body.news .article__single__contents .contents__eyecatch {
    width: 25%;
  }
}

body.post-type-archive-news .article__single__contents .contents__eyecatch img,
body.news .article__single__contents .contents__eyecatch img {
  width: 100%;
}

body.post-type-archive-news .article__single__contents .contents__text,
body.news .article__single__contents .contents__text {
  width: 70.4%;
}

@media screen and (max-width: 991px) {
  body.post-type-archive-news .article__single__contents .contents__text,
  body.news .article__single__contents .contents__text {
    margin-top: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .article__single__contents .contents__text,
  body.news .article__single__contents .contents__text {
    margin-top: 0;
    width: 70%;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.post-type-archive-news .article__single__contents .contents__text .continue,
body.news .article__single__contents .contents__text .continue {
  text-decoration: underline;
}

body.post-type-archive-news .pager,
body.news .pager {
  margin: 50px auto 70px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .pager,
  body.news .pager {
    margin: 40px auto 35px;
  }
  body.post-type-archive-news .pager__wrapper,
  body.news .pager__wrapper {
    margin: 0 auto;
  }
}

body.post-type-archive-news .page-numbers,
body.news .page-numbers {
  background-color: #fff;
  color: #808080;
  border: 1px solid #808080;
  padding: 2px 6px;
  margin-right: 5px;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .page-numbers,
  body.news .page-numbers {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.post-type-archive-news .page-numbers.current,
body.news .page-numbers.current {
  background-color: #808080;
  border: 1px solid #808080;
  color: #fff;
}

body.post-type-archive-news .next.page-numbers,
body.post-type-archive-news .prev.page-numbers,
body.news .next.page-numbers,
body.news .prev.page-numbers {
  background-color: #fff;
  color: #808080;
  border: none;
  padding: 0;
}

body.post-type-archive-news .next.page-numbers,
body.news .next.page-numbers {
  margin-left: 20px;
  margin-right: 0;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .next.page-numbers,
  body.news .next.page-numbers {
    margin-left: 0.8%;
  }
}

body.post-type-archive-news .prev.page-numbers,
body.news .prev.page-numbers {
  margin-right: 25px;
}

@media screen and (max-width: 575px) {
  body.post-type-archive-news .prev.page-numbers,
  body.news .prev.page-numbers {
    margin-right: 0.8%;
  }
}

/*

ニュース投稿

*/
/* Vendor */
/* Variable */
/*

breakpoints

*/
/*

base color

*/
/*

text color

*/
/*

table color

*/
/*

button color

*/
/*

width

*/
/*

webfonts

*/
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/* Function */
body.news_single .news_single__wrapper,
body.single-news .news_single__wrapper {
  width: 100%;
  margin-bottom: 70px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", sans-serif;
  position: relative;
}

@media screen and (max-width: 575px) {
  body.news_single .news_single__wrapper,
  body.single-news .news_single__wrapper {
    margin-bottom: 35px;
  }
}

body.news_single .news_single__wrapper::after,
body.single-news .news_single__wrapper::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1541a2;
  position: absolute;
  top: 0;
}

body.news_single .single_contents,
body.single-news .single_contents {
  zoom: 1;
}

body.news_single .single_contents::after,
body.single-news .single_contents::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column,
  body.single-news .single_contents .main_column {
    float: none;
  }
}

body.news_single .single_contents .main_column .article__detail,
body.single-news .single_contents .main_column .article__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.news_single .single_contents .main_column .article__detail time,
body.single-news .single_contents .main_column .article__detail time {
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .article__detail time,
  body.single-news .single_contents .main_column .article__detail time {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.news_single .single_contents .main_column .article__detail .category__wrapper,
body.single-news .single_contents .main_column .article__detail .category__wrapper {
  margin-left: 15px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body.news_single .single_contents .main_column .article__detail .category__wrapper .single-terms,
body.single-news .single_contents .main_column .article__detail .category__wrapper .single-terms {
  display: block;
  padding: 3px 15px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 5px;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  body.news_single .single_contents .main_column .article__detail .category__wrapper .single-terms,
  body.single-news .single_contents .main_column .article__detail .category__wrapper .single-terms {
    padding: 3px 10px;
  }
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .article__detail .category__wrapper .single-terms,
  body.single-news .single_contents .main_column .article__detail .category__wrapper .single-terms {
    padding: 3px 7px;
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .article__detail .category__wrapper,
  body.single-news .single_contents .main_column .article__detail .category__wrapper {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.news_single .single_contents .main_column .article__title,
body.single-news .single_contents .main_column .article__title {
  margin-top: 15px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .article__title,
  body.single-news .single_contents .main_column .article__title {
    margin-top: 10px;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 10px;
  }
}

body.news_single .single_contents .main_column .article__contents p,
body.single-news .single_contents .main_column .article__contents p {
  margin-top: 45px;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .article__contents p,
  body.single-news .single_contents .main_column .article__contents p {
    margin-top: 27px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.news_single .single_contents .main_column .article__contents p a,
body.single-news .single_contents .main_column .article__contents p a {
  color: #1541a2;
}

body.news_single .single_contents .main_column .article__contents .article__img img:nth-child(2),
body.single-news .single_contents .main_column .article__contents .article__img img:nth-child(2) {
  margin-top: 30px;
}

body.news_single .single_contents .main_column .pager,
body.single-news .single_contents .main_column .pager {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .pager,
  body.single-news .single_contents .main_column .pager {
    margin-top: 30px;
  }
}

body.news_single .single_contents .main_column .pager .arrow__prev,
body.news_single .single_contents .main_column .pager .arrow__next,
body.single-news .single_contents .main_column .pager .arrow__prev,
body.single-news .single_contents .main_column .pager .arrow__next {
  width: 37px;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .pager .arrow__prev,
  body.news_single .single_contents .main_column .pager .arrow__next,
  body.single-news .single_contents .main_column .pager .arrow__prev,
  body.single-news .single_contents .main_column .pager .arrow__next {
    width: 10%;
  }
}

body.news_single .single_contents .main_column .pager .arrow__prev a,
body.news_single .single_contents .main_column .pager .arrow__next a,
body.single-news .single_contents .main_column .pager .arrow__prev a,
body.single-news .single_contents .main_column .pager .arrow__next a {
  display: block;
}

body.news_single .single_contents .main_column .pager__archive,
body.single-news .single_contents .main_column .pager__archive {
  width: 41.7%;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .pager__archive,
  body.single-news .single_contents .main_column .pager__archive {
    width: 60%;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.news_single .single_contents .main_column .pager__archive a,
body.single-news .single_contents .main_column .pager__archive a {
  color: #fff;
  display: block;
  padding: 10px 10px;
  background-color: #1541a2;
  border-radius: 30px;
  border: 1px solid #1541a2;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .main_column .pager__archive a,
  body.single-news .single_contents .main_column .pager__archive a {
    padding: 5px 10px;
  }
}

body.news_single .single_contents .main_column .pager__archive a:hover,
body.single-news .single_contents .main_column .pager__archive a:hover {
  background-color: #fff;
  color: #1541a2;
  text-decoration: none;
}

body.news_single .single_contents .widget > ul > li:not(:last-child),
body.single-news .single_contents .widget > ul > li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

body.news_single .single_contents .widget > ul > li a::after,
body.single-news .single_contents .widget > ul > li a::after {
  font-family: "fontello";
  content: "\e802";
  position: absolute;
  right: 5%;
  color: #333;
  font-weight: 700;
}

body.news_single .single_contents .widget > ul > li:hover a::after,
body.single-news .single_contents .widget > ul > li:hover a::after {
  right: 2%;
}

body.news_single .single_contents .sub_column,
body.single-news .single_contents .sub_column {
  margin-top: 50px;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .sub_column,
  body.single-news .single_contents .sub_column {
    float: none;
    margin-top: 30px;
  }
}

body.news_single .single_contents .sub_column .archive,
body.single-news .single_contents .sub_column .archive {
  width: 100%;
}

body.news_single .single_contents .sub_column .archive h2,
body.single-news .single_contents .sub_column .archive h2 {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background-color: #032959;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .sub_column .archive h2,
  body.single-news .single_contents .sub_column .archive h2 {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 15px;
  }
}

body.news_single .single_contents .sub_column .archive ul li a,
body.single-news .single_contents .sub_column .archive ul li a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  body.news_single .single_contents .sub_column .archive ul li a,
  body.single-news .single_contents .sub_column .archive ul li a {
    font-size: 10px;
    font-size: 1rem;
  }
}

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