@charset "UTF-8";

/*****************************
  pagecommon
*****************************/
.topicsmain{
  padding-bottom: 140px;
}
@media only screen and (max-width: 768px) {
  .topicsmain{
    padding-bottom: 90px;
  }
}

/*****************************
  pagehead
*****************************/
.pagehead{
  padding: 3rem 0;
  position: relative;
}
.pagehead-ttl{
  text-align: center;
}
.pagehead-ttl .ttl{
  font-size: 3rem;
  font-weight: bold;
}
.pagehead-ttl .enttl{
  color: #ab0a3d;
  font-weight: bold;
}
@media only screen and (max-width: 980px) {
  .pagehead{
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .pagehead-ttl .ttl{
    font-size: 6vw;
  }
}

/******************************
  news archive
******************************/
.topics_archives{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px auto 0;
  max-width: 1260px;
  padding: 0 30px;
}
.topics_archives .newsmain {
  margin: 0;
  padding: 0;
  width: calc(100% - 330px);
}
.topics_archives .newssidebar {
  max-width: 300px;
  width: 100%;
}

.topics_archives .news_list_item{
  border-top: 1px solid #ab0a3d;
  padding-top: 1rem;
}
.topics_archives .news_list_item:last-of-type{
  border-bottom: 1px solid #ab0a3d;
  padding-bottom: 1rem;
}


.topics_archives .newssidebar > dl {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.topics_archives .newssidebar > dl > div > dt{
  background-color: #f3d2d4;
  font-size: 18px;
  color: #ab0a3d;
  padding: 15px ;
}
.topics_archives .newssidebar > dl > div > dd li a{
  border-bottom: 1px solid #ab0a3d;
  display: block;
  padding: 15px ;
  transition: .5s;
}

.topics_archives .pagination{
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 6rem;
}
.page-numbers{
  aspect-ratio: 1/1;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  transition: bacground-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 3rem;
}
.page-numbers:hover,
.page-numbers.current{
  border-color: #ab0a3d;
  color: #ab0a3d;
}
.page-numbers.dots{
  width: 1rem;
}
.page-numbers.prev,
.page-numbers.next{
  display: none;
}


@media only screen and (max-width: 768px) {
  .topics_archives .newsmain {
    width: 100%;
  }
  .topics_archives .newssidebar {
    margin: 5rem  auto 0;
    max-width: 100%;
  }
}


/******************************
  news single
******************************/
.topics_single{
  margin-top: 90px;
  padding-top: 40px;
}
.topics_single_inner{
  margin: 0 auto;
  max-width: 860px;
  padding: 0 30px;
}
.topics_singlehead_info{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topics_singlehead_info .cat{
  border-radius: 100px;
  border: 1px solid #ab0a3d;
  color: #ab0a3d;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  min-width: 100px;
  padding: 0 1rem;
  text-align: center;
}
.topics_singlehead_info time{
  font-size: 15px;
  font-weight: bold;
}
.topics_singlehead_ttl{
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
}
.topics_single .singlecontent{
  margin: 2rem 0 8rem;
}
.topics_single .btn{
  text-align: center;
}
.topics_single .btn a{
  background-color: #fff;
  border: 1px solid #ab0a3d;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 1rem 1.5rem ;
  position: relative;
  opacity: 1;
  transition: .5s;
}
.topics_single .btn a::before,
.topics_single .btn a::after{
  content: "";
  background-color: #ab0a3d;
  border-radius: 9999px;
  position: absolute;
  top: calc(50% - 2px);
  right: 2rem;
  transform-origin: calc(100% - 1px) 50%;
  transition: .5s;
  height: 2px;
  width: 10px;
}
.topics_single .btn a::before{
  transform: rotate(45deg);
}
.topics_single .btn a::after{
  transform: rotate(-45deg);
}
.topics_single .btn a:hover{
  background: #ab0a3d;
  color: #fff;
}
.topics_single .btn a:hover::before,
.topics_single .btn a:hover::after{
  background: #fff;
}