@charset "UTF-8";
/* CSS Document */


/* page topにあるimage画像の部分*/
h2{
  color: #666;
  margin-bottom: 10px;
}
.page-image{
  background-image: url("../images/news/sp-news-top.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin: 63px auto;
  padding: 50px 0;
}
.news-page-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-bottom: 40px;
}
.news-page-list li {
  width: calc(50% - 5px);
}
.news-page-list li:nth-of-type(odd){
  margin-right: 10px;
}
.news-page-list li a {
  display: block;
}
.news-page-list-img {
  margin-bottom: 16px;
}
.news-title-wrapper {
  margin-bottom: 25px;
  text-align: left;
}
.news-item-info-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news-item-info-head time {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  transition: all .8s cubic-bezier(.04, .435, .315, .9);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.news-item-category {
  display: block;
  text-transform: uppercase;
  position: relative;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0 0 21px;
}
.news-item-category::before {
  content: "|";
  position: absolute;
  top: 0;
  left: 8px;
}
.news-title {
  height: 22px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all .8s cubic-bezier(.04, .435, .315, .9);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 5px;
  margin-bottom: 80px;
}
.page {
  display: block;
  border: 1px solid #7490af;
  padding: 20px;
  margin: 0 4px;
  color: #7490af;
}
.current {
  display: block;
  background-color: #7490af;
  color: #fff;
  border: 1px solid #7490af;
  padding: 20px 23px;
  margin: 0 4px;
}
/* --------------------------------------------------
  タブレット版
-------------------------------------------------- */
@media screen and (min-width:641px){
  .news-page-list li {
    width: calc(33.3% - 14px);
  }
  .news-page-list li {
    margin: 0 20px 20px 0;
  }
  .news-page-list li:nth-of-type(odd){
    margin-right: 20px;
  }
  .news-page-list li:nth-of-type(3n){
    margin-right: 0px;
  }

  .news-page-item a:hover .news-item-info-head time,
  .news-page-item a:hover .news-item-category,
  .news-page-item a:hover .news-item-info h3{
   color: #7490af;
  }
  .news-page-item a:hover .news-title-wrapper .news-title {
   color: #7490af;
   text-decoration: underline;
  }
  .news-page-list-img {
   overflow: hidden;
  }
  .news-page-list-img img {
  transition: all 0.5s ease-out;
  transform: matrix3d(
              1, 0, 0, 0,
              0, 1, 0, 0,
              0, 0, 1, 0,
              0, 0, 0, 1
            );
  will-change: transform;
  }
  .news-page-list-img img:hover {
  opacity: 0.5;
  transform: matrix3d(
              1, 0, 0, 0,
              0, 1, 0, 0,
              0, 0, 1, 0,
              0, 0, 0, 0.9);
  }
}

/* --------------------------------------------------
  pc版
-------------------------------------------------- */
 @media screen and (min-width:1001px){
  .page-image{
    background-image: url("../images/news/news-top.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 100px 0;
    margin: 82px auto 95px;
  }
   .news-page-list {
    max-width: 1000px;
    margin: 0 auto;
  }
   .access-inner {
    margin-bottom: -34px;
}
 }
  