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

#contents h2 {
 font-size: var(--font-size-36);
 font-weight: 700;
 text-align: left;
 margin-bottom: 4rem;
 border-left: solid 6px #1D57B0;
 padding-left: 2rem;
}
.list {
margin-bottom: 6rem;
}
.list ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.list ul li {
width: 32%;
display: flex;
flex-direction: column;
margin-bottom: 4rem;
border: solid 1px #666;
padding: 1rem;
}
.list ul li .thumb {
width: 100%;
  aspect-ratio: 4 / 3;  
  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,
.list ul li .price {
 font-size: var(--font-size-24);
  font-weight: 600;
}
p.note {
 font-size: var(--font-size-24);
  font-weight: 600;
}