@charset "UTF-8";

/* CSS Document */

body {
    background: url(/milky-pop/images/bg_pattern.svg) #eee;
    background-size: 80px;
}

/*====================================

    products_cell

====================================*/  

.products_cell {
    margin-bottom: 100px;
}
.products_cell:last-child {
    margin-bottom: 0px;
}
.products_cell .ttl {
	width: 100%;
	text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}
.products_cell .ttl img {
	width: 20%;
	margin: 0 auto;
}
.products_cell .list {
}
.products_cell .list dl dt {
    cursor: pointer;
    -webkit-animation: pd_zoom .3s;
    animation: pd_zoom .3s;
    display: block;
    position: relative;
}
.products_cell .list dl dt .icon {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 20%;
    height: 20%;
    display: inline-block;
    z-index: 10;
}
.products_cell .list dl dt:hover img {
    -webkit-animation: pd_zoom .3s;
    animation: pd_zoom .3s;
}
@-webkit-keyframes pd_zoom {
    50% {
        -webkit-transform: scale(1.05);
    }
}
@keyframes pd_zoom {
    50% {
        transform: scale(1.05);
    }
}
.products_cell .list dl dt .prod_ttl {
    width: 100%;
    text-align: center;
}
.products_cell .list dl dt .prod_ttl p {
    width: 100%;
    font-weight: 600;
    font-size: 120%;
    text-align: center;
}
.products_cell .list dl dd .box {
    display: table;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.products_cell .list dl dd .box:first-child {
    border-top: 1px solid #eee;
}
.products_cell .list dl dd .box .box_ttl {
    display: table-cell;
    width: 140px;
}
.products_cell .list dl dd .box .box_ttl p {
    font-weight: 600;
    font-size: 110%;
}
.products_cell .list dl dd .box .box_cont {
    display: table-cell;
}
.products_cell .list dl dd .box .box_cont p br {
    display: none;
}
.products_cell .list dl dd .box .box_cont p .kouri {
    background: #ff99d3;
    line-height: 1em;
    padding: .2em 2em;
    font-size: 80%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.products_cell .list dl dd .box .box_cont p .kome {
    display: block;
    font-size: 80%;
}
.products_cell .list dl dd .btn {
    margin-top: 30px;
}

/*====================================

    howmany

====================================*/ 

.howmany {
    margin: 60px 0 80px;
    padding: 0 10%;
}
.howmany a {
    border: 2px solid #dd0011;
    display: block;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
}
.howmany a:hover {
    -webkit-animation: how_zoom .3s;
    animation: how_zoom .3s;
}
@-webkit-keyframes how_zoom {
    50% {
        -webkit-transform: scale(1.02);
    }
}
@keyframes how_zoom {
    50% {
        transform: scale(1.02);
    }
}


