/* Scss Document */
/* mixin
*********************************************************************/
/* media query */
.area_header {
  background-image: url("../images/main.jpg");
}

.box_news_list {
  padding: 0 0 20px;
}
.box_news_list ul {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
}
.box_news_list ul li {
  padding: 15px;
  width: 25%;
  box-sizing: border-box;
}
.box_news_list ul li .parts_img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.box_news_list ul li .parts_img .inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}
.box_news_list ul li .parts_img .inner img {
  height: 100%;
  width: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.box_news_list ul li .parts_txt h2 {
  font-size: 1.8rem;
  line-height: 1.2em;
  padding: 8px 0;
  border-bottom: #CCC dotted 1px;
}
.box_news_list ul li .parts_txt p {
  font-size: 1.3rem;
  line-height: 1.4em;
  padding: 8px 0;
  border-bottom: #CCC dotted 1px;
}
.box_news_list ul li .parts_txt .btn_detail {
  padding: 8px 24px;
}
.box_news_list ul li .parts_txt .btn_detail a {
  text-align: center;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1em;
  background-color: #D3422E;
  display: block;
  padding: 4px 0;
}
.box_news_list ul li .parts_txt .btn_detail a:hover {
  background-color: #666;
}
@media all and (max-width: 768px) {
  .box_news_list ul li {
    padding: 10px 5px;
    width: 33.3333%;
  }
}
@media all and (max-width: 768px) {
  .box_news_list ul li {
    width: 50%;
  }
  .box_news_list ul li .parts_txt h2 {
    font-size: 1.5rem;
  }
}

.pager {
  text-align: center;
}

.box_news {
  padding: 20px 0;
}
.box_news h2 {
  font-size: 3rem;
  line-height: 1.2em;
  border-bottom: #CCC dotted 1px;
  padding: 0 0 8px;
}
.box_news .parts_img {
  padding: 15px 0;
  text-align: center;
}
.box_news .parts_img img {
  max-width: 1000px;
  height: auto;
}
.box_news .parts_txt {
  padding: 15px 0;
}
.box_news .parts_txt p {
  font-size: 1.4rem;
  line-height: 1.6em;
}
@media all and (max-width: 768px) {
  .box_news h2 {
    font-size: 2.4rem;
  }
  .box_news .parts_img img {
    width: 100%;
    height: auto;
  }
}

.btn_back {
  padding: 10px 0;
  text-align: center;
}
.btn_back a {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1em;
  background-color: #D3422E;
  display: inline-block;
  padding: 8px 0;
  width: 60%;
}
.btn_back a:hover {
  background-color: #666;
}
