@charset "UTF-8";

#contentArea > header::after {
  background-image: url(../../news/images/news_main.jpg);
  }

/* ---------------------------------------------------------------------
	index
*/
/* ----- list shadow ----- */
/* news-box */
#contentArea ul.list-shadow.news-box {
  margin-bottom: 0;
  }
  #contentArea ul.list-shadow.news-box a {
    display: block;
    }
    #contentArea ul.list-shadow.news-box a .box dl {
      margin: 0;
      }
      #contentArea ul.list-shadow.news-box a .box dl dt {
        width: 100%;
        background-image: url(../../news/images/news-box_thumb.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        aspect-ratio: 3 / 2;
        transition: all 0.15s;
        }
        #contentArea ul.list-shadow.news-box a:hover .box dl dt {
          background-color:rgba(255,255,255,0.4);
          background-blend-mode: lighten;
          }
      #contentArea ul.list-shadow.news-box a .box dl dd {
        padding: 24px;
        min-height: 12em;
        }
        #contentArea ul.list-shadow.news-box a .box dl dd .date {
          display: inline-block;
          font-family: "Helvetica Neue", Helvetica , sans-serif;
          color: #6b7280;
          text-decoration: none;
          }

/* paging */
#contentArea ul.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  list-style-type: none;
  }
  #contentArea ul.paging li {
    margin: 0 8px;
    }
    #contentArea ul.paging li a,
    #contentArea ul.paging li span {
      position: relative;
      display: block;
      width: 40px;
      height: 40px;
      color: #fff;
      font-weight: bold;
      line-height: 40px;
      text-decoration: none;
      text-align: center;
      background-color: #033570;
      border-radius: 50%;
      }
      #contentArea ul.paging li a:hover {
        background-color: #d70a30;
        }
      #contentArea ul.paging li span.current {
        background-color: #9ca3af;
        }
      /* next prev */
      #contentArea ul.paging li a.next,
      #contentArea ul.paging li a.prev,
      #contentArea ul.paging li span.next,
      #contentArea ul.paging li span.prev {
        font-weight: bold;
        background-color: inherit;
        border-radius: inherit;
        }
        #contentArea ul.paging li a.next::after,
        #contentArea ul.paging li a.prev::after,
        #contentArea ul.paging li span.next::after,
        #contentArea ul.paging li span.prev::after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 8px;
          height: 8px;
          transform: translate(-50%, -50%) rotate(45deg);
          transition: all 0.15s;
          }
        #contentArea ul.paging li a.next::after {
          border-bottom: 2px solid #033570;
          border-left: 2px solid #033570;
          }
        #contentArea ul.paging li span.next.inactive::after {
          border-bottom: 2px solid #9ca3af;
          border-left: 2px solid #9ca3af;
          }
          #contentArea ul.paging li a:hover.next::after {
            border-bottom: 2px solid #d70a30;
            border-left: 2px solid #d70a30;
            }
        #contentArea ul.paging li a.prev::after {
          border-top: 2px solid #033570;
          border-right: 2px solid #033570;
          }
        #contentArea ul.paging li span.prev.inactive::after {
          border-top: 2px solid #9ca3af;
          border-right: 2px solid #9ca3af;
          }
          #contentArea ul.paging li a:hover.prev::after {
            border-top: 2px solid #d70a30;
            border-right: 2px solid #d70a30;
            }

/* ---------------------------------------------------------------------
	post
*/
#contentArea .post-heading {
  margin-bottom: 64px;
  }
  #contentArea .post-heading .date {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica , sans-serif;
    color: #6b7280;
    }
  #contentArea .post-heading h2 {
    margin: 0;
    padding-top: 0;
    font-size: 3.6rem;
    line-height: 1.5;
    text-align: left;
    }
    #contentArea .post-heading h2::before {
      display: none;
      }

#contentArea .button_outer {
  text-align: center;
  }

/* ---------------------------------------------------------------------
	SP
*/
@media only screen and (max-width : 767px) {

/* ----- list shadow ----- */
/* news-box */
#contentArea ul.list-shadow.news-box {
  flex-direction: column;
  align-items: center;
  }
  #contentArea ul.list-shadow.news-box li {
    margin-left: 0;
    margin-bottom: 32px;
    width: 90%;
    }
  #contentArea  ul.list-shadow.news-box li:nth-of-type(3n+1) {
    margin-left: 0;
    }
  #contentArea  ul.list-shadow.news-box li:nth-of-type(2n+1) {
    margin-left: 0;
    }

/* ---------------------------------------------------------------------
	post
*/
#contentArea .post-heading {
  margin-bottom: 40px;
  }
  #contentArea .post-heading h2 {
    font-size: 2.8rem;
    line-height: 1.6;
    }

}