/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Template: oceanwp
Author: OceanWP
Author URI: https://oceanwp.org/about-oceanwp/
Description: OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful & professional design. Very fast, responsive, RTL & translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet & mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor & WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it's the only theme you will ever need: https://oceanwp.org/demos/
Tags: two-columns,right-sidebar,footer-widgets,blog,news,custom-background,custom-menu,post-formats,rtl-language-support,sticky-post,editor-style,threaded-comments,translation-ready,buddypress,custom-colors,featured-images,full-width-template,theme-options,e-commerce,block-styles,wide-blocks,accessibility-ready
Version: 3.6.0.1727249625
Updated: 2024-09-25 16:33:45

*/
/* 商品ページの次の商品を表示するボタンを非表示 */

a.owp-nav-link.next {
    display: none !important;
}

a.owp-nav-link.prev {
    display: none !important;
}

/* より具体的なセレクタ */
.woocommerce ul.products.list li.product li.title a {
    font-size: 20px !important;
}

@media only screen and (max-width: 768px) {
    .woocommerce ul.products.list li.product li.title a {
        font-size: 14px !important;
    }
}

/* HTMLの構造全体を考慮 */
html body .woocommerce ul.products.list li.product li.title a {
    font-size: 20px !important;
}

@media only screen and (max-width: 768px) {
    html body .woocommerce ul.products.list li.product li.title a {
        font-size: 14px !important;
    }
}

/* パソコン版（デフォルトのグリッド形式） */
.woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
}

.woocommerce ul.products li.product {
    width: 23% !important; /* 4列表示 */
    margin: 1% !important;
    list-style-type: none !important; /* リストスタイルを消す */
    display: inline-block !important; /* 横並び */
}

/* スマホ版（リスト形式） */
@media only screen and (max-width: 768px) {
    .woocommerce ul.products {
        display: block !important;
    }

    .woocommerce ul.products li.product {
        width: 100% !important; /* リスト形式に変更 */
        margin-bottom: 20px !important; /* アイテム間の余白 */
        display: block !important; /* 縦並び */
    }
}

add_action('wp_footer', 'hide_delivery_date_and_time_fields');

function hide_delivery_date_and_time_fields() {
    echo '<style>
        #order_wc4jp_delivery_date_field {
            display: none;
        }
        #order_delivery_time_field {
            display: none;
        }
    </style>';
}