table#appeal {
    width: 726px;
    background-color: antiquewhite;
    border: 3px ridge antiquewhite;
    margin: 5px auto 20px auto;
    }
    td.appeal {
    border: none;
    }
    
    td.left {
    width: 35%;
    text-align: left;
    padding-left: 0;
    border: none;
    }
    th.store2 {
    width: 33%;
    padding: 0 auto;
    }
    td.right {
    width: 33%;
    text-align: right;
    padding-right: 0;
    border: none;
    }
    table.store2 {
    margin: 20px auto;
    width: 700px;
    }
    
    /*  お知らせ　*/
    
    
    /**　新着情報　**/
    #info.no_titlebar ul {
        border-top: 1px solid #e1e1e1;
    }
    #info.no_titlebar ul li{
        position: relative;
        border-bottom: 1px solid #e1e1e1;
        padding: 10px 0;
    }
    
    #info.no_titlebar .date{
    font-size:12px;
    margin-bottom: 6px;
    }
    #info.no_titlebar .news-title{
        color: #333;
        margin-top: 5px;
        line-height: 1.6;
    }
    
    
    /* 夏季休業用 */
    .box26 {
        position: relative;
        margin: 10px 0;
        padding: 0.5em 1em;
        border: solid 3px #95ccff;
        border-radius: 8px;
    }
    .box26 .box-title {
        position: absolute;
        display: inline-block;
        top: -13px;
        left: 10px;
        padding: 0 9px;
        line-height: 1;
        font-size: 19px;
        background: #FFF;
        color: #95ccff;
        font-weight: bold;
    }
    .box26 p {
        margin: 0; 
        padding: 0;
    }

/* 商品一覧レイアウト - 5個表示に変更 */
.product_list {
    float: left;
    width: 20%; /* 5個表示のため幅を20%に変更 */
    text-align: center;
    margin: 0px;
    padding: 0 8px;
    box-sizing: border-box;
    position: relative;
}

.product_item {
    text-align: center;
    padding: 0px 0px 20px; /* 下部パディングを調整 */
    transition: transform 0.3s ease;
}

.product_item:hover {
    transform: translateY(-5px);
}

.product_item img {
    border: none; /* 枠線を削除 */
    max-width: 100%; /* 画像サイズを調整 */
    height: auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.product_item .name {
    margin: 8px 0 5px 0; /* マージン調整 */
    color: #333333;
    font-size: 0.9em; /* フォントサイズ調整 */
    line-height: 1.4; /* 行間調整 */
    height: 2.8em; /* 2行分の高さを確保 */
    overflow: hidden;
}


/* 5個表示用の行コンテナ */
.product_item_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px 30px;
}

.product_item_row:after {
    content: "";
    display: block;
    clear: both;
}

/* 「NEW」ラベル */
.new_label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e41056;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    z-index: 2;
    border-radius: 2px;
}

/* もっとみるボタン */
.view_more_btn {
    display: block;
    width: 200px;
    margin: 0 auto 40px;
    padding: 10px 0;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view_more_btn:hover {
    background-color: #e41056;
    color: #fff;
    border-color: #e41056;
}

.view_more_btn:after {
    content: "→";
    margin-left: 5px;
    position: relative;
    top: 0;
    transition: transform 0.3s ease;
}

.view_more_btn:hover:after {
    transform: translateX(5px);
}

/* 非表示商品（初期状態で隠す） */
.hidden_items {
    display: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
    .product_list {
        width: 33.33%; /* モバイルでは3個表示 */
        padding: 0 5px;
    }
    
    .product_item_row {
        margin: 0 -5px 20px;
    }
    
    .product_item img {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .product_list {
        width: 50%; /* 小さいスマホでは2個表示 */
    }
    
    .view_more_btn {
        width: 80%;
    }
}

span.fsize_large {
    color: #bf0000;
}