@charset "UTF-8";
/* CSS Document */

#contents h2 {
 font-size: var(--font-size-36);
 font-weight: 700;
 text-align: center;
 margin-bottom: 4rem;
}
.list {
margin-bottom: 6rem;
}
.list ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.list ul li {
width: 45%;
display: flex;
flex-direction: column;
margin-bottom: 4rem;
}
.list ul li .thumb {
width: 100%;
  aspect-ratio: 16 / 9;  
  background: #eee;   
  overflow: hidden;
  margin-bottom: 1rem;
}
.list ul li .thumb img {
 width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}
.list ul li .title {
 font-size: var(--font-size-24);
 font-weight: 600;
}
.list ul li dl {
margin: 0;
padding: 0;
}
.list ul li dl dt {
 font-size: var(--font-size-18);
 text-align: left;
margin-bottom: 1rem;
}
.list .cap li {
margin-bottom: 1rem;
}


@media screen and (min-width:769px)and (max-width:1024px){
}


@media screen and (min-width:521px) and (max-width:768px) {
}

@media screen and (max-width:520px) {

.list ul li {
width: 100%;
}

}






