@charset "utf-8";
/* CSS Document */
.dlt_information{
  padding: 72px 0 128px;
  background-color: #F5F6F8;
}
.dlt_infobody{
  max-width: 1050px;
  margin: auto;
  padding-top: 8px;
}

.dlt_categorynav ul{
  display: flex;
  justify-content: flex-end;
}
.dlt_categorynav ul li a{
  display: block;
  padding: 8px 26px;
  text-align: center;
  border-radius: 18.5px;
  border: 1px solid #1f2022;
  font-weight: 500;
  font-size: 0.875rem;
  color: #1f2022;
}
.dlt_categorynav ul li:nth-last-of-type(n+2){margin-right: 22px;}
.dlt_categorynav ul li.active a,
.dlt_categorynav ul li a:hover{
  background: #1f2022;
  color: #FFF;
}



.dlt_infolist{
  max-width: 1050px;
  width:100%;
}
.dlt_infolist ul li{
  padding: 56px 0;
  transition: all 0.2s linear;
}
.dlt_infolist ul li:nth-of-type(2){transition-delay: 0.15s;}
.dlt_infolist ul li:nth-of-type(3){transition-delay: 0.3s;}
.dlt_infolist ul li:nth-of-type(4){transition-delay: 0.45s;}
.dlt_infolist ul li:nth-of-type(5){transition-delay: 0.6s;}
.dlt_infolist ul li:nth-of-type(6){transition-delay: 0.75s;}
.dlt_infolist ul li:nth-of-type(7){transition-delay: 0.9s;}
.dlt_infolist ul li:nth-of-type(8){transition-delay: 1.05s;}
.dlt_infolist ul.active li{opacity: 1;}
.dlt_infolist ul li:nth-last-of-type(n+2){border-bottom: 1px solid #B1B1B1;}
.dlt_infolist ul li a{
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.dlt_infolist ul li a::after{
  content: "";
  position: absolute;
  display: block;
  width: 76px;
  height: 76px;
  right: 0;
  top: calc(50% - 38px);
  border-radius: 100%;
  background: url("../common/img/icon_arw_bk.svg") center center no-repeat;
  background-color: #FFFFFF;
}
.dlt_photo{
  width: 276px;
  aspect-ratio: 16/9;
  background-color: #D8D8D8;
  overflow: hidden;
}
.dlt_photo img{
  width: 100%;
  object-fit: contain;
  transition: all 0.2s linear;
}
.dlt_infoentry{
  width: 572px;
  margin-left: 32px;
}
.dlt_infoentry div:first-of-type{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 32px;
  overflow: hidden;
}
.dlt_infoentry div:first-of-type p{
  font-size: 1.125rem;
  font-weight: 500;
  color: #1F2022;
}
.dlt_infoentry div:first-of-type p span{position: relative;}
.dlt_infoentry div:first-of-type p span::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.15s linear;
}
.dlt_entryheader{
  display: flex;
  align-items: center;
}
.dlt_date{
  margin-right: 16px;
  font-weight: 500;
  color: #1F2022;
}
.dlt_category{
  display: inline-block;
  min-height: 25px;
  padding: 3px 16px 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.75rem;
  color: #1F2022;
  border-radius: 12.5px;
  border: 1px solid #707070;
}

.dlt_infolist ul li h2{font-size: 1.125rem;}/*記事無しの記述*/



.dlt_pagenation{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 44px;
  border-top: 1px solid #B1B1B1;
}
.dlt_review span:first-of-type,
.dlt_next span:last-of-type{
  display: inline-block;
  width: 76px;
  height: 76px;
  padding-top: 23px;
  vertical-align: middle;
  text-align: center;
  border-radius: 100%;
  background-color: #323232;
}
.dlt_review span:first-of-type{margin-right: 18px;}
.dlt_review span:first-of-type img{transform: rotate(180deg);}
.dlt_next span:last-of-type{margin-left: 18px;}

.dlt_review span:last-of-type,
.dlt_next span:first-of-type{
  vertical-align: middle;
  text-decoration: underline;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1F2022;
}

.dlt_pagenumber{
  display: flex;
  justify-content: center;
}
.dlt_pagenation .dlt_pagenumber li:nth-last-of-type(n+2){
  margin-right: 24px;
  border-bottom: none;
}
.dlt_pagenation .dlt_pagenumber li a{
  padding: 0 4px;
  font-family: Roboto, YakuHanJP, 'Noto Sans Japanese',"Hiragino Sans";
  font-size: 1.125rem;
  color: #8C8C8D;
}
.dlt_pagenation .dlt_pagenumber li.current a{
  color: #1F2022;
  font-weight: bold;
}
.dlt_pagenation .dlt_pagenumber li a::after{content: none;}





@media screen and (min-width:821px){
  .dlt_infolist ul li a:hover::after{animation: bgpositionmove 0.2s linear forwards;}
  .dlt_infolist ul li a:hover .dlt_photo img{transform: scale(1.05);}
  .dlt_infolist ul li a:hover .dlt_infoentry div:first-of-type p span::after{width: 100%;}

  .dlt_review a:hover span:first-of-type,
  .dlt_next a:hover span:last-of-type{opacity: 0.5;}
  .dlt_next a:hover span:first-of-type,
  .dlt_review a:hover span:last-of-type{text-decoration: none;}
}





@media screen and (max-width:1128px){/*1110+17*/
  .dlt_photo{width: 24.4vw;}
  .dlt_infoentry{width: 50.7vw;}
}
@media screen and (max-width:820px){
  .dlt_categorynav ul li a{
    padding: 4px 16px;
    font-size: clamp(0.625rem, 0.349rem + 1.03vw, 0.875rem);/*10-14 430-820*/
  }
  .dlt_categorynav ul li:nth-last-of-type(n+2){margin-right: max(10px, 2.6vw);}



  .dlt_infolist ul li{padding: 6.8vw 0;}
  .dlt_infoentry{margin-left: 3.9vw;}
  .dlt_infoentry div:first-of-type{margin-bottom: 3.9vw;}
  .dlt_infoentry div:first-of-type p{font-size: clamp(0.75rem, 0.477rem + 1.02vw, 1rem);}/*12-16 430-820*/
  .dlt_date{font-size: clamp(0.625rem, 0.216rem + 1.53vw, 1rem);}/*10-16 430-820*/
  .dlt_category{
    min-height: auto;
    padding: 0;
    font-size: clamp(0.625rem, 0.489rem + 0.51vw, 0.75rem);/*10-12 430-820*/
    border: none;
  }
  .dlt_infoentry{width:54vw;}
  .dlt_infolist ul li a::after{
    width: max(24px, 9.26vw);
    height: max(24px, 9.26vw);
    top: calc(50% - 4.6vw);
  }


  .dlt_pagenation{flex-wrap: wrap;}
  .dlt_pagenumber{
    width: 100%;
    order: 1;
  }
  .dlt_review{order: 2;}
  .dlt_next{order: 3;}
  .dlt_review span:last-of-type,
  .dlt_next span:first-of-type{font-size: clamp(0.75rem, 0.341rem + 1.53vw, 1.125rem);}/*12-18 430-820*/
  .dlt_review span:first-of-type,
  .dlt_next span:last-of-type{
    width: clamp(40px, 9.2vw, 9.2vw);
    height: clamp(40px, 9.2vw, 9.2vw);
    padding-top: 2.8vw;
  }
}
@media screen and (max-width:430px){
  .dlt_review span:first-of-type,
  .dlt_next span:last-of-type{padding-top: 6px;}
}