a {
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }
  a:hover {
    opacity: .7; }

main {
  background: url(/assets/img/top/bg_town.png) repeat-x center bottom #f4f4f4;
  background-size: auto 100px;
  padding: 0 0 140px; }
  @media only screen and (max-width: 767px) {
    main {
      padding: 0 0 27.7%;
      background-size: 150% auto; } }

.news {
  padding: 15px 0 0; }
  @media only screen and (max-width: 767px) {
    .news {
      padding: 5% 0 0; } }

.block__title {
  color: #c2143e;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 35px;
  background: url(/assets/img/top/block_title_bg.png) no-repeat center bottom; }
  @media only screen and (max-width: 767px) {
    .block__title {
      font-size: 1.5rem;
      padding-bottom: 6%;
      margin-bottom: 5%;
      background-size: 32%; } }

.news-list {
  width: 880px;
  margin: auto; }
  @media only screen and (max-width: 767px) {
    .news-list {
      width: 100%; } }

.news-list__item {
  background: url(/assets/img/top/news_line.png) repeat-x center top;
  padding: 15px 0; }
  @media only screen and (max-width: 767px) {
    .news-list__item {
      padding: 2.5% 0; } }
  .news-list__item:last-child {
    background: url(/assets/img/top/news_line.png) repeat-x center top, url(/assets/img/top/news_line.png) repeat-x center bottom; }
  .news-list__item .list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.35714;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .news-list__item .list__item_date {
    width: 120px;
    padding: 5px 0;
    letter-spacing: 0.06em;
    line-height: 1.35714; }
    @media only screen and (max-width: 767px) {
      .news-list__item .list__item_date {
        width: auto;
        margin-right: 5%;
        font-size: 1.1rem; } }
  .news-list__item .list__item_category {
    width: 110px;
    background: #999;
    text-align: center;
    border-radius: 15px;
    padding: 2px 5px;
    margin: 3px 35px 3px 0;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .news-list__item .list__item_category {
        width: 30%;
        margin-right: 0;
        font-size: 1rem; } }
  .news-list__item .list__item_category--info {
    background: #fdd34e; }
  .news-list__item .list__item_category--campaign {
    background: #cdda21; }
  .news-list__item .list__item_category--present {
    background: #f7c4b3; }
  .news-list__item .list__item_category--event {
    background: #abe8f5; }
  .news-list__item .list__item_text {
    width: 615px;
    display: block;
    padding: 5px 0;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .news-list__item .list__item_text {
        width: 100%;
        font-size: 1.2rem; } }
    .news-list__item .list__item_text a:hover {
      text-decoration: underline; }

.pagenation {
  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;
  margin-top: 50px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .pagenation {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-top: 9%; } }
  .pagenation .pagenation__number_list {
    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;
    max-width: 600px; }
    @media only screen and (max-width: 767px) {
      .pagenation .pagenation__number_list {
        width: 70%;
        max-width: 100%; } }
    .pagenation .pagenation__number_list li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      margin: 6px; }
      @media only screen and (max-width: 767px) {
        .pagenation .pagenation__number_list li {
          width: auto;
          margin: 2%; } }
      .pagenation .pagenation__number_list li a, .pagenation .pagenation__number_list li span {
        width: 23px;
        height: 23px;
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        position: relative;
        color: #000;
        line-height: 23px;
        text-align: center;
        background: #fff;
        border-radius: 50%; }
        @media only screen and (max-width: 767px) {
          .pagenation .pagenation__number_list li a, .pagenation .pagenation__number_list li span {
            font-size: 1.1rem; } }
      .pagenation .pagenation__number_list li a {
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s; }
        .pagenation .pagenation__number_list li a:hover {
          opacity: 1;
          color: #fff;
          background: #c2143e; }
      .pagenation .pagenation__number_list li.current a, .pagenation .pagenation__number_list li.current span {
        background: #c2143e;
        color: #fff; }
  .pagenation .page_prev, .pagenation .page_next {
    margin: 5px; }
    .pagenation .page_prev a, .pagenation .page_next a {
      display: block;
      font-size: 1.8rem;
      font-weight: bold;
      color: #000;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .pagenation .page_prev a, .pagenation .page_next a {
          font-size: 1.4rem; } }
  .pagenation .page_next {
    margin-left: 25px;
    width: 15px; }
    .pagenation .page_next a {
      width: 100%;
      display: block;
      position: relative; }
      .pagenation .page_next a::after {
        content: '';
        position: absolute;
        display: block;
        top: 50%;
        right: 20px;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        border-top: 3px solid #c2143e;
        border-right: 3px solid #c2143e;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: right .4s;
        -o-transition: right .4s;
        transition: right .4s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden; }
      .pagenation .page_next a:hover::before, .pagenation .page_next a:hover::after {
        right: 15px; }
        @media only screen and (max-width: 767px) {
          .pagenation .page_next a:hover::before, .pagenation .page_next a:hover::after {
            right: 20px; } }
    @media only screen and (max-width: 767px) {
      .pagenation .page_next {
        margin-left: 5%; } }
  .pagenation .page_prev {
    margin-right: 25px;
    width: 15px; }
    .pagenation .page_prev a {
      width: 100%;
      display: block;
      position: relative; }
      .pagenation .page_prev a::after {
        content: '';
        position: absolute;
        display: block;
        top: 50%;
        left: 20px;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        border-top: 3px solid #c2143e;
        border-right: 3px solid #c2143e;
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -webkit-transition: left .4s;
        -o-transition: left .4s;
        transition: left .4s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden; }
      .pagenation .page_prev a:hover::before, .pagenation .page_prev a:hover::after {
        left: 15px; }
        @media only screen and (max-width: 767px) {
          .pagenation .page_prev a:hover::before, .pagenation .page_prev a:hover::after {
            left: 20px; } }
    @media only screen and (max-width: 767px) {
      .pagenation .page_prev {
        margin-right: 5%; } }
