@charset "UTF-8";
/* Scss Document */
section {
    margin-top: 150px;
}
h1 {
    background: url(../../product/images/title.png) no-repeat;
    background-position: center;
    background-size: contain;
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.5rem;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
}
.product {
    margin-top: 150px;
}
.product-list ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
}
.product-list ul li {
    width: calc(100% / 3 - 2rem);
    margin: 1rem;
}


.product-list h3 {
    display: flex;
    align-items: center;
    background: #fed273;
    font-weight: normal;
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem;
    padding-left: 2rem;
    margin: 1rem auto;
}

.product-contents {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.product-contents div {
    width: calc(50% - 2rem);
    margin-right: 2rem;
    margin-bottom: 2rem;
}
.product-contents div h4 {
    text-align: left;
    font-weight: normal;
    font-size: 1.2rem;
    background: #ebd0c6;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-bottom: 1rem;
}

.product-contents table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    
}
.product-contents td, .product-contents th {
    border: 1px solid #aaa;
    padding: 1rem 0;
}
.product-contents table th {
    width: 8rem;
    background: #FC9D60;
    font-weight: normal;
}
.product-contents p {
    margin-bottom: 2rem;
}
.remarks {
    text-align: right;
}

/* for smart phone & tablet*/
@media screen and (max-width: 768px) {

   
}
/* smartphone */
@media screen and (max-width: 480px) {
    .product-list ul li {
        width: 40%;
    }
    .product-contents div {
        width: 100%;
        margin-right: 0;
    }
}
