@charset "utf-8";

/***************************************************************************

  ページヘッダ

***************************************************************************/
.pageHeadImg {
  background-image: url("../images/lower/news/head_bg.jpg");
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .pageHeadImg {
    background-position: left 0px bottom 0;
  }
}

/***************************************************************************

  コンテンツ

***************************************************************************/
.newsBlock {
  width: 100%;
  max-width: 1068px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin: 0 auto;
}

.newsListBlock h2 {
  font-size: 3.0rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 50px;
  letter-spacing: 0.075em;
}

section.newsListBlock {
  width: 77%;
}

.newsList {
  width: 100%;
  margin: 0 auto 70px;
}

.newsList li {
  text-align: left;
  width: 100%;
  font-size: 1.6rem;
  border-bottom: dotted 1px #000;
}

.newsList li:first-child a {
  padding: 0 0 0;
}

.newsList li a {
  transition: 0.3s;
  padding: 1em 0 0;
  opacity: 1;
  display: block;
  color: #231815;
}

.newsList li a:hover {
  opacity: 0.6;
}

.newsList li span {
  width: 7em;
  font-size: 1.6rem;
  display: inline-block;
  text-align: left;
  transition: 0.3s;
  color: #595757;
}

.newsList li a:hover span {
  width: 7em;
}

.newsList li i {
  width: calc(100% - 7em);
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.noNews {
  font-size: 2.0rem;
  text-align: center;
  margin-bottom: 100px;
}

aside {
  width: 19%;
  margin-bottom: 100px;
}

aside strong {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px;
  display: block;
}

aside ul li {
  font-size: 1.4rem;
  display: inline-block;
  width: 13em;
  margin: 0 0 9px;
}

aside ul li a {
  width: 100%;
  display: block;
  text-align: center;
  color: #fff !important;
  padding: 2px 0 1px;
  transition: 0.3s;
}

aside ul li a.info {
  background: #baa066;
  border: solid 1px #fff;
}

aside ul li a.info:hover {
  background: #fff;
  color: #baa066 !important;
  border: solid 1px #baa066;
}

aside ul li a.important {
  background: #b40214;
  border: solid 1px #fff;
}

aside ul li a.important:hover {
  background: #fff;
  color: #b40214 !important;
  border: solid 1px #b40214;
}

aside ul li a.campaign {
  background: #163567;
  border: solid 1px #163567;
}

aside ul li a.campaign:hover {
  background: #fff;
  color: #163567 !important;
  border: solid 1px #163567;
}

aside ul li a.media {
  background: #5aa449;
  border: solid 1px #5aa449;
}

aside ul li a.media:hover {
  background: #fff;
  color: #5aa449 !important;
  border: solid 1px #53bc3a;
}

/*****************************************
  ページネーション
*****************************************/
.page_navi {
  width: 100%;
  display: inline-block;
  text-align: center;
  clear: both;
  font-size: 1.5rem;
  margin: 0 0 60px;
  padding: 10px 0 !important;
  list-style: none !important;
}

.page_navi li {
  display: inline;
  list-style: none !important;
  background: none !important;
  line-height: 1em;
  padding: 0 !important;
  margin: 0 2px !important;
  clear: none;
}

.page_navi li.current span {
  font-weight: 600;
  display: inline-block;
  padding: 6px 10px 6px;
  background: #eaeaea;
  border-radius: 2em;
}

.page_navi li a {
  color: #231815;
  padding: 6px 9px 6px;
  background: none;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.page_navi li a:hover {
  color: #999999;
}

.page_navi li.page_nums span {
  color: #fff;
  padding: 6px 9px 6px;
  background: #f3f3f3;
  display: inline-block;
  border: solid 1px #333333;
}

@media screen and (max-width: 1068px) {
  .newsBlock {
    padding: 0 4%;
  }

  section.newsListBlock {
    width: calc(77% - 3em);
  }
}

@media screen and (max-width: 767px) {
  .newsListBlock h2 {
    font-size: 2.0rem;
    margin: 0 0 35px;
  }

  .newsBlock {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px 4% 50px;
  }

  section.newsListBlock {
    width: 100%;
    padding: 0 0 0;
  }

  .newsList {
    margin: 0 auto 40px;
  }

  .newsList li a:hover {
    opacity: 0.7;
  }

  .newsList li span {
    width: 6em;
  }

  .newsList li a:hover span {
    width: 6em;
  }

  .newsList li i {
    width: calc(100% - 6em);
  }

  aside {
    width: 100%;
    margin-bottom: 0;
  }

  aside ul li {
    display: block;
  }

  .page_navi {
    margin: 0 0 40px;
  }
}

/***************************************************************************

  記事ページ

***************************************************************************/
section.newsArtBlock {
  width: 77%;
}

section.newsArtBlock .wrap {
  width: 100%;
  padding: 0 0 50px;
  margin: 0 0 40px;
  border-bottom: dotted 1px #979798;
}

.newsArtBlock h2.artTitle {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 40px;
  letter-spacing: 0.075em;
}

.newsArtBlock span.artDate {
  color: #595757;
}

.newsArtBlock h3 {
  font-size: 2.3rem;
  font-weight: 500;
  padding: 30px 0 30px;
  letter-spacing: 0.075em;
}

.newsArtBlock h2 + h3 {
  padding: 0 0 30px;
}

.newsArtBlock h3 + h3 {
  padding: 0 0 30px;
}

.newsArtBlock p {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 2em;
  letter-spacing: 0.075em;
}

.newsArtBlock img {
  max-width: 100%;
  height: auto;
  margin: 10px 0 0;
}

.newsArtBlock ul {
  margin: 0 0 2em;
  padding-left: 1em;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.newsArtBlock ul li {
  margin: 0 0 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2em;
}

.newsArtBlock ul li:before {
  content: '■';
  position: absolute;
  left: 0;
  top: 0.35em;
  font-size: 1rem;
  vertical-align: middle;
}

.newsArtBlock ol {
  margin: 0 0 2em 1.2em;
  padding-left: 1em;
  list-style: decimal;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.newsArtBlock ol li {
  margin: 0 0 10px;
  line-height: 1.5;
}

.newsArtBlock a {
  text-decoration: none;
  color: #0080cb;
  transition: 0.3s;
}

.newsArtBlock a:visited {
  text-decoration: none;
  color: #0080cb;
}

.newsArtBlock a:hover {
  text-decoration: underline;
  color: #0080cb;
}

@media screen and (max-width: 1068px) {
  section.newsArtBlock {
    width: calc(77% - 3em);
  }
}

@media screen and (max-width: 767px) {
  section.newsArtBlock {
    width: 100%;
  }

  section.newsArtBlock .wrap {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: dotted 1px #979798;
  }

  .newsArtBlock h2.artTitle {
    font-size: 2.1rem;
    font-weight: 500;
    margin: 0 0 20px;
  }

  .newsArtBlock h3 {
    font-size: 2.0rem;
    padding: 20px 0 20px;
  }

  .newsArtBlock h2 + h3 {
    padding: 0 0 20px;
  }

  .newsArtBlock h3 + h3 {
    padding: 0 0 20px;
  }

  .newsArtBlock p {
    font-size: 1.6rem;
  }

  .newsArtBlock img {
    margin: 5px 0 0;
  }

  .newsArtBlock ul {
    font-size: 1.6rem;
  }

  .newsArtBlock ol {
    font-size: 1.6rem;
  }
}

/*****************************************
  次の記事 前の記事
*****************************************/
.prvnxtwrap {
  width: 100%;
  float: left;
  margin: 0 auto 0;
}

.prvnxt {
  width: 100%;
  float: left;
}

.prvnxt ul {
  width: 80%;
  margin: 0 auto;
  font-size: 1.5rem;
  padding: 0;
}

.prvnxt ul li {
  position: static;
  padding: 0;
  margin: 0;
}

.prvnxtwrap a:visited {
  color: #231815;
  text-decoration: none;
}

.prvnxt ul .prv {
  float: left;
}

.prvnxt ul .prv a {
  padding: 0 0 0 1em;
  color: #231815;
  position: relative;
  z-index: 5;
}

.prvnxt ul .prv a:before {
  content: '<';
  position: absolute;
  left: 0;
}

.prvnxt ul .next {
  float: right;
}

.prvnxt ul .next a {
  padding: 0 1em 0 0;
  color: #231815;
  position: relative;
  z-index: 5;
}

.prvnxt ul .next a:before {
  content: '>';
  position: absolute;
  right: 0;
}

.prvnxt a {
  opacity: 1;
  transition: 0.3s;
}

.prvnxt a:hover {
  opacity: 0.5;
}

.DettoList {
  width: 100%;
  float: left;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  margin: 0 0 3em;
}

.DettoList a {
  opacity: 1;
  color: #2f2725;
  transition: 0.3s;
}

.DettoList a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 500px) {
  .prvnxt ul {
    width: 100%;
    font-size: 12px;
  }

  .DettoList {
    font-size: 12px;
  }
}
