/*page
=======================================================*/
h2.page-ttl{
  font-family: "ZenOldMincho Bold";
  font-size: 30px;
  margin-bottom: 20px;
}

/*SNS
=======================================================*/
.sns{
  background: #313131;
  color:#fff;
}
.sns .common{
  width: 800px;
}
.sns-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
h2.sns-ttl{
  font-family: "ZenOldMincho Black";
  font-size: 90px;
  line-height: 1;
}
.sns-url{
  display: flex;
  gap:30px;
}
.sns-url svg{
  color: #fff;
  font-size: 60px;
}
a.sns-note{
  display: flex;
  gap: 50px;
  width: 100%;
  border: 1px solid #fff;
  padding: 30px;
  justify-content: center;
}
a.sns-note img{
  object-fit: contain;
}
a.sns-note img.sns-note-class{
  width: 45%;
}
a.sns-note img.sns-note-batu{
  
}
a.sns-note img.sns-note-logo{
  width: 30%;
}
a.sns-note:hover{
  background: #666;
}

@media screen and (max-width: 768px){
  .sns .common{
    width: 90%;
  }
  .sns-box{
    flex-wrap: wrap;
  }
  h2.sns-ttl{
    font-size: 12vw;
    margin-bottom: 20px;
  }
  .sns-url{
    gap: 20px;
  }
  .sns-url svg{
    font-size: 30px;
  }
  a.sns-note{
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 10px;
  }
  a.sns-note img.sns-note-class{
    width: 50%;
  }
  a.sns-note img.sns-note-batu{
    width: 6%;
  }
  a.sns-note img.sns-note-logo{
    width: 30%;
  }
}

/*CONTENTS
=======================================================*/
h2.contents-ttl{
  font-family: "ZenOldMincho Black";
  font-size: 55px;
  margin-bottom: 30px;
}
a.contents-box{
  display: flex;
  align-items: center;
  gap:20px;
  margin-bottom: 20px;
}
a.contents-box img{
  width: 40%;
  object-fit: cover;
}
.contents-detail{
  width: 60%;
}
.contents-detail-ttl{
  font-family: "ZenOldMincho Regular";
  font-size: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.contents-detail-txt{
  font-size: 17px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 20px 0;
}
.contents-detail-data{
  color:#D9D9D9;
}

@media screen and (max-width: 768px){
  h2.contents-ttl{
    font-size: 8vw;
  }
  a.contents-box{
    gap: 10px;
  }
  a.contents-box img{
    width: 50%;
    height: 100px;
  }
  .contents-detail{
    width: 50%;
  }
  .contents-detail-ttl{
    font-size: 4.5vw;
  }
  .contents-detail-txt{
    margin: 5px 0;
    -webkit-line-clamp: 2;
  }
  .contents-detail-txt p{
    font-size: 3.2vw;
    line-height: 1.3;
  }
  .contents-detail-data{
    font-size: 3vw;
  }
}

/*ページャー
=======================================================*/
.pagination{
  font-family: "ZenOldMincho Black";
}
.pagination .nav-links{
  display: flex;
  justify-content: center;
  font-size: 20px;
  gap: 10px;
}
.pagination .nav-links span,
.pagination .nav-links a{
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #AEAEAE;
  color: #AEAEAE;
}
.pagination .nav-links span.current{
  background: #535353;
  color: #fff;
}
.pagination .nav-links a.next,
.pagination .nav-links a.next{
  border: unset;
}

@media screen and (max-width: 768px){

}