.product_list_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 3%;
    width: 80%;
    text-align: center;
    margin: 0 auto 40px;
}
.product_list_item {
    width: 22%;
    text-align: center;
}
.product_list_item a {
    display: block;
    text-decoration: none;
    color: #333;
}
.product_list_item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
.product_list_wrap {
    width: 100%;
}
.product_list_item {
    width: 30%;
}
}

.nerigoma-btn-container {
    margin: 0 auto 40px;
    font-size: 18px;
    border: 1px solid #333;
    width: 380px;
    padding: 0.5em;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 初期状態の軽い影 */
    cursor: pointer;
}

/* マウスホバー時の動き (主にPC向け) */
.nerigoma-btn-container:hover {
    transform: translateY(-2px); /* 少し上に浮く */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* 影を濃く・大きくする */
    background-color: #e3ddcf; /* 背景色を少し明るく */
}

/* クリック/タップ時の動き (押し込む表現) */
.nerigoma-btn-container:active {
    transform: translateY(1px); /* 元の位置より少し下がる */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* 影を小さくする */
    background-color: #d1c8b4; /* 背景色を少し暗く */
}

/* 矢印アイコンのアニメーション (ホバー時に少し右へ動く) */
.nerigoma-btn-container:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon {
    transition: transform 0.2s ease;
}
.nerigoma-btn-container a{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: inherit;
    width: 100%; /* aタグのクリック範囲を広げる */
    height: 100%;
}
@media screen and (max-width: 767px) {
.nerigoma-btn-container {
    font-size: 16px;
    width: 100%;
    padding: 0.8em;
}
}