/* ===== ▼共通 ===== */
.product_cate_main {
    padding-top: 80px;
}

.product_cate_title {
    text-align: center;
}
/* ===== ▲共通 ===== */
/* ===== ▼productカテゴリアーカイブ（ph以外） ===== */


.product_list_ul {
    width: 90%;
    margin: 70px auto;
}

.product_list_content {
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    box-shadow:  8px 8px 20px #d8d8d8,
    -8px -8px 20px #ffffff;
    border-radius: 20px;
}

.product_list_content a {
    color: #424242;
}

.product_picture {
    width: 70%;
    margin: 0 auto;
    padding: 20px 0;
}

.product_list_text {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 60px;
    font-size: 14px;
}

.product_list_title {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.example_title {
    display: inline-block;
    background-color: #d9d9d9;
    padding: 0 16px;
    margin: 26px 0 16px;
}
/* ===== ▲productカテゴリアーカイブ（ph以外） ===== */
/* ===== ▼phカテゴリアーカイブ ===== */
/* ==== ▼カタログ ==== */
.catalog_wrapper {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    justify-content: space-around;
	background-image: url(../img/products/catalog-bg-black.webp);
    background-size: cover;
    margin-top: 50px;
}

.catalog_img {
    object-fit: contain;
    width: 45%;
    max-width: 220px;
}

.catalog_text {
    color: #fff;
    margin: auto 0;
}

.catalog_text p {
    font-size: 17px;
}

.catalog_text p span {
    font-size: 19px;
}

.catalog_btn {
    margin: 20px 0 0 0;
    width: 140px;
    height: 50px;
    line-height: 50px;
    border-color: #fff;
}

.catalog_btn span {
    color: #fff;
}

/* ==== ▲カタログ ==== */
/* ==== ▼phリスト ==== */
.ph_list_ul {
    width: 90%;
    margin: 70px auto;
}

.ph_list_content {
    width: 100%;
    margin: 20px auto;
    box-shadow:  5px 5px 17px #ababab,
    -5px -5px 17px #ffffff;
    border-radius: 20px;
    padding: 20px 5% 20px;
    position: relative;
}

.ph_link {
    color: #424242;
}

.ph_list_img_outer {  
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.ph_list_img {
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.6s;
}

/* ▼hoverで画像拡大 */
.ph_link:hover .ph_list_img {
    transform: scale(1.2);
}

.ph_link:hover .btn_more3 {
	width: 90%;
}

/* ▲hoverで画像拡大 */


.snap_list_desc {
    font-size: 14px;
    padding-bottom: 70px;
}

.ph_list_btn {
    position: absolute;
    bottom: 30px;
    left: 14px;
}


.option_title {
    text-align: center;
}
/* ==== ▲phリスト ==== */
/* ==== ▼オプション ==== */
.option_wrapper {
    width: 90%;
}

.option_ul {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 100%);
}

.option_li:last-child {
    border-bottom: none;
}

.option_li {
    border-bottom: #424242 0.5px solid;
    padding: 10% 0;
}

.option_desc {
    margin-top: 20px;
}

.option_desc_title {
    margin: 10px 0;
    color: #e25761;
}

.option_caution {
	margin-top: 50px;
	color: #575757;
}

/* ==== ▲オプション ==== */
/* ===== ▲phカテゴリアーカイブ ===== */

/* ===== ▼▼▼▼　520px以上　▼▼▼▼ ===== */
@media screen and (min-width: 520px) {
	/* ===== ▼productカテゴリアーカイブ（ph以外） ===== */
    .product_list_ul {
        width: 90%;
        margin: 70px auto;      
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    column-gap: 2%;
    }
    
    .product_list_content a {
        display: flex;
        justify-content: space-between;
        padding: 20px;
    }
    
    .product_picture {
        width: 32%;
        margin: auto;
    }
    
    .product_list_text {
        width: 64%;
        padding: 5%;
    }
    

    /* ===== ▲productカテゴリアーカイブ（ph以外） ===== */
    /* ===== ▼phカテゴリアーカイブ ===== */
/* ==== ▼カタログ ==== */
.catalog_wrapper {
    justify-content: center;
    background-attachment: fixed;
}

.catalog_text {
    margin-left: 60px;
}

.catalog_text p {
    font-size: 26px;
}

.catalog_text p span {
    font-size: 28px;
}


/* ==== ▲カタログ ==== */
/* ==== ▼phリスト ==== */
.ph_list_ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    column-gap: 2%;
}


/* ==== ▲phリスト ==== */
/* ==== ▼オプション ==== */

.option_li {
    display: flex;
    justify-content: space-between;
    padding: 5%;
}

.option_li img {
    width: 48%;
    object-fit: contain;
}

.option_desc {
    width: 48%;
    padding-left: 20px;
    margin-top: 0;
}

/* ===== ▲phカテゴリアーカイブ ===== */
}

/* ===== ▼▼▼▼　960px以上　▼▼▼▼ ===== */
@media screen and (min-width: 960px) {
    /* ===== ▼共通 ===== */
.product_cate_main {
    padding-top: 180px;
}

/* ===== ▲共通 ===== */
	/* ===== ▼productカテゴリアーカイブ（ph以外） ===== */
    .product_list_ul {
        max-width: 1600px;
    }

    /* ===== ▲productカテゴリアーカイブ（ph以外） ===== */

        /* ===== ▼phカテゴリアーカイブ ===== */
/* ==== ▼カタログ ==== */
.catalog_wrapper {
    padding: 30px;
}

.catalog_img {
    margin-right: 5%;
}

.catalog_text {
    margin-left: 3%;
}

.catalog_text p {
    font-size: 30px;
}

.catalog_text p span {
    font-size: 34px;
}


/* ==== ▲カタログ ==== */
/* ==== ▼phリスト ==== */
.ph_list_ul {
    max-width: 1200px;
}
/* ==== ▲phリスト ==== */
/* ==== ▼オプション ==== */

.option_ul {
    grid-template-columns: repeat(auto-fit, 50%);
    width: 100%;
}

.option_li:nth-of-type(2n-1) {
    border-right: #424242 0.5px solid;
}
/* ==== ▲オプション ==== */
/* ===== ▲phカテゴリアーカイブ ===== */
}