@charset "utf-8";
/* CSS Document */

/* SampleSite
-----------------------------------------------------*/

/* ==============================================
    pagelist
============================================== */
.pagelist ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	list-style: none;
}
.pagelist li {
	display: inline-block;
	width: 48%;
	margin: 10px 0;
}
.pagelist li a {
	display: block;
	padding: 50px 0;
	text-align: center;
	color: #333;
	border: 2px solid var(--main-color);
	border-radius: 10px;
	font-size: 1.250em;
}

/* ==============================================
    
============================================== */
.outline_table table {
    background: #fff;
    width: 100%;
}
.outline_table table td {
    padding: 20px 15px;
    border: none;
    border-bottom: 1px solid #666;
}
.outline_table table td:first-child {
    background: var(--main-color);
    color: #fff;
    border-bottom: 1px solid #fff;
    width: 8em;
}


/* ==============================================
    banner-eco_excellent
============================================== */
.banner-eco_excellent {
    min-height: 210px;
    background: url("image/bnr_eco_bg_01.jpg") no-repeat right top / cover;
    margin: 0 0 50px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px 0;
}
.banner-eco_excellent strong {
    font-size: 1.125em;
    font-weight: 700;
    color: var(--main-color);
}
.banner-eco_excellent a {
    font-size: 0.875em;
    font-weight: 700;
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    width: 120px;
    text-align: center;
    line-height: 30px;
    border-radius: 15px;
}
.banner-eco_excellent a:hover {
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .banner-eco_excellent p.text {
        padding: 10px;
        background: rgba(244,244,244,0.6);
    }
}

/* ==============================================
    product_lineup
============================================== */
.product_lineup {
    margin: 50px auto;
}
.product_lineup ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

@media screen and (max-width: 800px) {
    .product_lineup ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 700px) {
    .product_lineup {
        margin: 50px 10px;
    }
    .product_lineup ul {
        grid-template-columns: 1fr;
    }
}

.product_lineup li {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    grid-row-gap: 12px;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

.product_lineup li figure {
    text-align: center;
}

.product_lineup li .product-types {
    font-size: 0.875em;
}
.product_lineup li .product-category {
    display: flex;
    gap: 10px;
}
.prod-cat {
    display: inline-block;
    background: #45b035;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
    width: 5em;
    text-align: center;
}
.prod-cat.cat-business {
    background: #45b035;
}
.prod-cat.cat-house {
    background: #f08300;
}

.product_lineup li .product-catch {
    font-size: 0.875em;
    font-weight: 700;
    color: var(--main-color);
}
.product_lineup li .product-link {
    margin: 20px 0 0 0;
}
.product_lineup li .product-link a {
    display: block;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 5px;
}
.product_lineup li .product-link a:hover {
    text-decoration: none;
}

/* ==============================================
    product
============================================== */
.product-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
	margin: 0 0 50px;
    padding: 50px 0 0 0;
}
.prod-name {
    font-size: 2em;
    margin: 0 0 20px;
}
.prod-series {
    display: block;
    font-size: 0.5em;
}

.prod-use {
    font-size: 0.875em;
    margin: 0 0 20px;
}
.prod-use dt::before {
    content: "■";
}


.prod-type dl {
    border-bottom: 1px solid #666;
    padding: 10px 0;
}
.prod-type dl:first-child {
    border-top: 1px solid #666;
}
.prod-type dl dt {
    display: flex;
    gap: 10px;
}
.prod-type dl dd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prod-price strong {
    font-size: 1.5em;
    display: inline-block;
    padding-right: 5px;
}

.prod-law-link {
    text-align: right;
    margin: 20px 0 0;
}

@media screen and (max-width: 700px) {
    .product-head {
        grid-template-columns: 1fr;
    }
}

.prod-catchcopy {
    margin: 50px 0;
}
.prod-catchcopy h2 {
    font-size: 1.5em;
    font-weight: 500;
	color: var(--main-color);
	padding: 10px 0;
	margin: 0 0 40px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}
.prod-catchcopy .content {
    font-size: 1.125em;
    line-height: 1.75;
    font-weight: 700;
    color: var(--main-color);
}

/* ==============================================
    cart
============================================== */
.wspsc_add_cart_submit {
    border: none;
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.125em;
    padding: 10px 30px;
    transition: .2s;
    cursor: pointer;
}
.wspsc_add_cart_submit:hover {
    opacity: 0.8;
}


div.shopping_cart table .wspsc_cart_item_row th,
div.shopping_cart table .wspsc_cart_item_row td {
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
}

div.shopping_cart table .wspsc_cart_item_thumb th,
div.shopping_cart table .wspsc_cart_item_thumb td {
    border-bottom: 1px solid #eee;
    padding: 10px 10px;
    font-size: 1.125em;
}

div.shopping_cart table .wpsc_cart_subtotal th,
div.shopping_cart table .wpsc_cart_subtotal td {
    border-top: 2px solid #ccc;
    padding: 10px 10px;
}

div.shopping_cart table .wpsc_cart_total th,
div.shopping_cart table .wpsc_cart_total td {
    border-top: 1px solid #ccc;
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
    font-size: 1.5em;
    font-weight: 700;
}

div.shopping_cart table input[type="number"] {
    padding: 5px 0;
}

/*div.shopping_cart tr td, div.shopping_cart tr th {
    padding: 5px 1px;
}

div.shopping_cart .wp_cart_item_name {
    display: inline-block;
    padding: 0 0 0 10px;
}
*/

/*.cart-content-block h2.wpsc_cart_title {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 30px;
    border: none;
}*/

.wpsc_cart_title,
.wpsc_checkout_form {
    display: none;
}

.shoppingButton {
    margin: 20px 0 0;
}
.shoppingButton .btn_order {
    text-align: center;
    margin: 40px auto 0;
}
.shoppingButton .btn_order a {
    font-size: 1.125em;
    font-weight: 700;
    color: #fff;
    background: var(--main-color);
    border-radius: 10px;
    width: 200px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
}

.shoppingButton .btn_order a:hover {
    text-decoration: none;
}

/* ==============================================
    entry-header
============================================== */
.entry-header {
    border-left: 4px solid rgba(var(--main-color-rgb), 0.8);
    padding: 20px;
    margin: 0 -30px 50px;
}
.entry-title {
    font-size: 1.75em;
    line-height: 1.3;
    margin: 10px 0 0;
}
.entry-date {
    text-align: left;
    font-size: 0.875em;
}
@media screen and (max-width: 700px) {
    .entry-header {
        margin: 0 -10px 50px;
    }
}

