@charset "utf-8";
/* CSS Document */
a:link, a:visited, a:hover {
    color: #ff8000;
}

* {
    text-decoration: none;
}

/*ギャラリーの中身*/

.gallery {
    width: 660px;
    margin: 20px;
}

/*ギャラリーのカテゴリ*/

.cat {
    /*width: 600px;*/
    padding: 5px 0 0 20px;
    margin: 10px;
    clear: both;
    display: block;
    background-color: #f88000;
    border: 1px dashed #ffffff;
    font-family: 'elder';
    font-size: 200%;
    color: #ffffff;
    text-shadow: 2px 2px 2px #808080;
    box-shadow: 0 0 10px 3px #ffb460;
}

.image_list {
    margin: 20px 0 20px 30px;
}

.chocolat-image img {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    padding: 7px;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease-out;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    -ms-transition: background 0.2s ease-out;
    -o-transition: background 0.2s ease-out;
    margin-right: 16px;
}

.chocolat-image img:hover {
    background: rgba(0, 0, 0, 0.5);
}