.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: 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%;
}
}

.category_recipelist_container{
    padding-bottom: 20px;
}
.category_recipelist_wrap{
    display: flex;
    justify-self: start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.category_recipelist_item{
    width: 22%;
    margin: 0 auto 50px;
}
.category_recipelist_item img{
    height: 160px;
    width: 100%;
    object-fit: cover;
}
.category_recipelist_item h3{
    font-weight: bold;
    height: 2.2em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category_recipelist_item p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
}
.category_recipe_button{
    background: url(../img/r-delta.svg) no-repeat 96% center #c6ae7b;
    background-size: 12px 12px;
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 5px 5%;
}
.category_recipelist_button_wrap{
    text-align: center;
    font-weight: bold;
}
.category_recipelist_button_item{
    width: 36%;
    margin: 10px auto;
    border: 1px solid;
    padding: 1em;
    display: block;
}
.category_recipelist_item a:hover {
    border: none;
    outline: none;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
.category_recipelist_container{
    padding-top: 20px;
}
.category_recipelist_item{
    width: 46%;
    margin: 0 auto 40px;
}
.category_recipelist_button_item{
    width: 96%;
}
.conta_banner{
    margin-bottom: 18px !important;
}
.sp-none{
    display: none;
}
}

.nerigoma-btn-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (max-width: 767px) {
.nerigoma-btn-container{
    margin: 0 auto 24px;
}
}
/* 左横の画像（疑似要素）の設定A */
.nerigoma-btn-containerA a::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 90px;
  margin-right: 15px; 
  background-image: url('https://gomayamada.itembox.cloud/product/005/000000000522/000000000522-01.jpg?size=l&w=NjAw&t=20260330171648');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
/* 左横の画像（疑似要素）の設定B */
.nerigoma-btn-containerB a::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 90px;
  margin-right: 15px;
  background-image: url('https://gomayamada.itembox.cloud/product/004/000000000497/000000000497-01.jpg?size=l&w=NjAw&t=20230303113525');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}