
#セット,
#単品,
#防災大賞 {
    display: flex;
    flex-wrap: wrap;
}

#セット div,
#単品 div,
#防災大賞 div {
    flex: 0 0 33.3%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    padding: 0; /* 適切なパディングを設定 */
    margin: 0 0 30px 0; /* 左寄せにするために左右のマージンを調整 */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    
}

.main-contents h2{
  margin-bottom: 30px;
}

.main-contents .page-title{
    font-weight: 300;
    font-size: 0.9rem;
    background-color:rgb(71, 71, 71) ;
    color: white;
    width: fit-content;
    margin: 0 auto 150px auto;
    padding: 5px 15px 5px 15px;
  }


.main-contents h3{
    text-align: center;
    font-weight: 500;
    margin: 100px auto 10px auto;
    border-bottom: solid 2px rgb(0,0,0);
    width: fit-content;
    padding-bottom: 5px;
}

.main-contents p{
 font-size: 0.9rem;
 font-weight: 300;
 margin-bottom: 50px;
 color: rgb(71, 71, 71);
}

.product {
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: rgb(0,0,0);
}
    
.product img{
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.027);
}
    
.product p {
    color: rgb(0, 0, 0);
    margin: 20px auto;
    padding: 0;
    font-weight: 400;
    display: inline-block;
    /* インライン表示にする */
    text-decoration: none;
    /* デフォルトの下線を削除 */
    border-bottom: 2px solid transparent;
    /* 下線は透明にして非表示 */
}

.top-text {
    display: none;
}