@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : news.css                                  */
/* update : 2021                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
.h1_wrap {
  background: url(/news/img/bg_h1.jpg) no-repeat center top/cover;
}
.h1_wrap h1::before {
  content: "";
  display: block;
  width: 338px;
  height: 115px;
  position: absolute;
  top: -95px;
  left: -160px;
  background: url(/news/img/img_h1.png) no-repeat center center/338px auto;
}

.news_box {
  background: #FFF;
  padding: 30px;
}

.news_list {
  border-top: solid 1px #808080;
  margin-bottom: 50px;
}
.news_list li a {
  display: block;
  position: relative;
}
.news_list li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 1px #808080;
  border-right: solid 1px #808080;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  transition: 0.5s;
}
.news_list li a:hover {
  color: #907826;
}
.news_list li a:hover::before {
  right: 10px;
  transition: 0.5s;
}
.news_list li .box {
  display: flex;
  justify-content: flex-start;
  border-bottom: solid 1px #808080;
}
.news_list li .box .date {
  padding: 20px;
  width: 140px;
  box-sizing: border-box;
}
.news_list li .box .content {
  padding: 20px 50px 20px 0;
  width: calc(100% - 140px);
  box-sizing: border-box;
}

.pager {
  display: flex;
  justify-content: center;
}
.pager li {
  width: 100%;
  max-width: 150px;
}
.pager li a {
  display: block;
  border: solid 1px #808080;
  text-align: center;
  position: relative;
}
.pager li.prev {
  margin-right: auto;
}
.pager li.prev a::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: solid 1px #808080;
  border-right: solid 1px #808080;
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -4px;
  transition: 0.5s;
}
.pager li.prev a:hover::before {
  left: 15px;
  transition: 0.5s;
}
.pager li.next {
  margin-left: auto;
}
.pager li.next a::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: solid 1px #808080;
  border-right: solid 1px #808080;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transition: 0.5s;
}
.pager li.next a:hover::before {
  right: 15px;
  transition: 0.5s;
}

/* ---------------詳細--------------------- */
.date {
  margin-bottom: 10px;
}

.news_tit {
  font-size: 23px;
  padding-bottom: 35px;
  margin-bottom: 50px;
  border-bottom: solid 2px #808080;
  line-height: 1.6;
}

.news_wrap {
  margin-bottom: 50px;
}
.news_wrap a {
  text-decoration: underline;
}

.news_img {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.news_wrap img {
  max-width: 100%;
  margin: 0 auto;
}

.news_img02 {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.news_img02 p {
  width: 49%;
}

.news_img03 {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.news_img03 p {
  width: 32%;
}

.recipe_box {
  display: flex;
  margin-top: 40px;
}

.recipe_box .inner_l {
  width: 45%;
  margin-right: 5%;
}

.recipe_box .inner_r {
  width: 50%;
}

/* ---------------全デバイス共通(pc)-end--------------------- */
/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) {
  /* tablet */
  /* -------------------tablet END------------------------- */
}
/*----------------------------------------------------------*/
/* sp用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 750px) {
  /* sp */
  .h1_wrap {
    background: url(/news/img/bg_h1_sp.jpg) no-repeat center center/cover;
  }
  .h1_wrap h1::before {
    content: "";
    display: block;
    width: 169px;
    height: 58px;
    position: absolute;
    top: -48px;
    left: -50px;
    background: url(/news/img/img_h1.png) no-repeat center center/169px auto;
  }
  .news_box {
    background: #FFF;
    padding: 15px;
    margin: 0 15px;
  }
  .news_list {
    border-top: solid 1px #808080;
    margin-bottom: 30px;
  }
  .news_list li a {
    display: block;
    position: relative;
  }
  .news_list li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border: 0px;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -5px;
    transition: inherit;
  }
  .news_list li a:hover {
    color: #3F3C3C;
  }
  .news_list li a:hover::before {
    right: 5px;
    transition: inherit;
  }
  .news_list li .box {
    display: block;
    border-bottom: solid 1px #808080;
  }
  .news_list li .box .date {
    padding: 15px 10px 0 10px;
    width: auto;
    box-sizing: border-box;
    margin-bottom: 0;
  }
  .news_list li .box .content {
    padding: 0 20px 15px 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
  }
  .pager {
    display: flex;
    justify-content: center;
  }
  .pager li {
    width: 32%;
    max-width: 150px;
  }
  .pager li a {
    display: block;
    border: solid 1px #808080;
    text-align: center;
    position: relative;
  }
  .pager li.prev {
    margin-right: auto;
  }
  .pager li.prev a::before {
    content: "";
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    transform: rotate(-135deg);
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -4px;
    transition: inherit;
  }
  .pager li.prev a:hover::before {
    left: 10px;
    transition: inherit;
  }
  .pager li.next {
    margin-left: auto;
  }
  .pager li.next a::before {
    content: "";
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 1px #808080;
    border-right: solid 1px #808080;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
    transition: inherit;
  }
  .pager li.next a:hover::before {
    right: 10px;
    transition: inherit;
  }
  /* ---------------詳細--------------------- */
  .date {
    margin-bottom: 10px;
  }
  .news_tit {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: solid 2px #727477;
    line-height: 1.6;
  }
  .news_img {
    display: flex;
    justify-content: center;
    margin: 15px 0;
  }
  .news_wrap img {
    max-width: 100%;
    margin: 0 auto;
  }
  .news_img02 {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
  }
  .news_img02 p {
    width: 100%;
    margin-bottom: 10px;
  }
  .news_img02 p:last-of-type {
    margin-bottom: 0;
  }
  .news_img03 {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
  }
  .news_img03 p {
    width: 100%;
    margin-bottom: 10px;
  }
  .news_img03 p:last-of-type {
    margin-bottom: 0;
  }
  .recipe_box {
    display: block;
    margin-top: 30px;
  }
  .recipe_box .inner_l {
    width: 100%;
    margin-right: 0;
  }
  .recipe_box .inner_r {
    width: 100%;
    margin-top: 15px;
  }
  /* ---------------------SP END----------------------------- */
}/*# sourceMappingURL=news.css.map */