@charset "utf-8";

/*===================================================

 今月の新商品

===================================================*/
article h2{
    font-size: 24px;
    font-family: var(--font-bold);
    text-align: center;
    margin: 40px 0 0 0;
    color: #4f4f4e;
    border-bottom: 6px solid #f4f3f3;
    line-height: 4.0rem;
}
article h3{
    font-size: 20px;
    font-family: var(--font-bold);
    color: #4f4f4e;
}
.new{
    display: flex;
    gap: 6px;
    margin:40px 0 16px 0;
}
.circle{
    width: 20px;
    height: 20px;
    background-color: #FEDF21;
    border-radius: 33px;
}
.product-list{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}
.product-list a{
    display: block;
    cursor: pointer;
    color: #4f4f4e;
    text-decoration: none;
}
.product-list img{
    display: block;
    margin: 0 auto 8px;
    transition: border-color .2s ease;
    border: 2px solid #E5E5E5;
}
.product-list p{
    color: #4f4f4e;
    transition: color .2s ease;
    font-family: var(--font-bold);
}
/*hover*/
.product-list a:hover img{
    border-color: #257ea7;
}
.product-list a:hover p{
    color: #257ea7;
}

#new-option ul li{
    display: flex;
    gap: 16px;
    margin: 24px 0;
}
#new-option ul li p{
    min-width: 100px;
    text-align: center;
    display: inline-block;
    background-color: #fff3a6;
    padding: 2px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--font-bold);
}
