@charset "utf-8";

.h1_wrap {
background: url(../../news/img/mv.jpg) no-repeat center/cover;
}
#travel #wrap {
  padding: 50px 0 0;
}

.content_wrap {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.content_wrap .news_content {
  border-bottom: dotted 1px #6fba2a;
}
.content_wrap .news_content:first-child {
  border-top: dotted 1px #6fba2a;
}
.content_wrap .news_content a {
  display: flex;
  padding: 20px 0;
  color: #000;
}
.content_wrap .news_content .news_date {
  width: 14%;
  padding: 3px 50px 0 0;
  color: #8f8f8f;
  font-size: 13px;
  box-sizing: border-box;
}
.content_wrap .news_content .news_tit {
  width: 86%;
}
.content_wrap .news_content a:hover .news_tit {
  text-decoration: underline;
}
.pager {
  display: flex;
  justify-content: center;
  margin-bottom: 85px;
}
.pager li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  padding: 4px 15px;
  color: #2a8c43;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.pager li a:hover {
  color: #2a8c43;
}
.pager li a.active {
  background: #2a8c43;
  border-radius: 50%;
  color: #fff;
}
.pager li a.active:hover {
  color: #fff;
}
.pager li.first a::before,
.pager li.last a::before {
  content: '';
  position: absolute;
  top: 42%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #2a8c43;
  border-right: solid 2px #2a8c43;
  transform: rotate(135deg);
}
.pager li.last a::before {
  left: inherit;
  right: 50%;
  transform: rotate(-45deg);
}

/* detail.html */
.detail .news_box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.detail .news_box .news_date {
  margin-bottom: 1px;
  color: #8f8f8f;
  font-size: 13px;
}
.detail .news_box .h2 {
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: solid 2px #2a8c43;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.8
}  
.detail .news_box .data_text_wrap p {
  font-size: 16px;
  line-height: 2.2;
}
.detail .news_box .data_pic_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.detail .news_box .data_pic_wrap li {
  width: 48%;
  margin: 25px 2% 0 0;
}
.detail .news_box .data_pic_wrap li:nth-child(2n) {
  margin-right: 0;
}
.detail .news_box .data_pic_wrap li:nth-child(-n+2) {
  margin-top: 0;
}  
.detail .news_box .data_pic_wrap li img {
  width: 100%;
}
.detail .data_link_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 90px;
}
.detail .data_link_wrap .back_link:first-child {
  position: absolute;
  left: 0;
}
.detail .data_link_wrap .back_link:last-child {
  position: absolute;
  right: 0;
}
.detail .data_link_wrap .back_link a {
  color: #2a8c43;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}
.detail .data_link_wrap .back_link a:hover {
  padding-bottom: 5px;
  border-bottom: solid 1px #2a8c43;
}
.detail .data_link_wrap .btn01 {
  width: 200px;
}

/* ---------------全デバイス共通(pc)-end--------------------- */

/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) and (max-width: 1040px) {

  #travel #wrap {
    padding: 55px 30px;
  }
  .pager {
    margin-bottom: 0;
  }
  .detail .data_link_wrap {
    margin-bottom: 10px;
  }

/* ---------------------tablet END----------------------------- */}

/*----------------------------------------------------------*/
/* sp用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 560px){/* sp */

  .h1_wrap {
    background-image: url(../../news/img/mv_sp.jpg);
  }
  #travel #wrap {
    padding: 0;
  }
  .content_wrap {
    margin: 30px auto;
    padding: 0 15px;
  }
  .content_wrap .news_content a {
    display: block;
    padding: 10px 0;
  }
  .content_wrap .news_content .news_date {
    width: 100%;
    padding: 0;
  }
  .content_wrap .news_content .news_tit {
    width: 100%;
  }

  .pager {
    margin-bottom: 30px;
  }
  .pager li a {
    max-width: 30px;
    max-height: 30px;
  }
  .pager li a {
    width: 30px;
    height: 30px;
    padding: 5px 10px;
    font-size: 15px;
    line-height: 1.4;
  }
  .pager li.first a,
  .pager li.last a {
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .pager li.first a::before,
  .pager li.last a::before {
    top: 40%;
    left: 50%;
  }

/* detail.html */
  .detail .news_box {
    margin: 30px auto 40px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .detail .news_box .h2 {
    margin-bottom: 15px;
    padding-bottom: 9px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .detail .news_box .data_text_wrap p {
    font-size: 14px;
    line-height: 2;
  }
  .detail .news_box .data_pic_wrap {
    margin-top: 15px;
  }
  .detail .data_link_wrap {
    margin: 0 auto 50px;
    padding: 0 15px;
  }
  .detail .data_link_wrap .back_link a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .detail .data_link_wrap .btn01 {
    max-width: 140px;
  }
  .detail .data_link_wrap .back_link:first-child {
    left: 15px;
  }
  .detail .data_link_wrap .back_link:last-child {
    right: 15px;
  }
  .detail .data_link_wrap .btn01 a {
    padding: 10px;
  }

}