@charset "utf-8"; /* CSS Document */

#special h1{}
#special h1 .main{font-weight:400;letter-spacing:2px}
#special h1 .sub{font-weight:700}

article #Inner{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
}

article #Inner:after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
}

article #Inner .Entry{
    width: 31.5%;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 3px;
    -webkit-transition: all .3s ease-out;
}
article #Inner .Entry .thumb{-webkit-transition: all .3s ease-out;}
article #Inner .Entry .thumb img{
    width: 100%;
    border-color: #000;
}
article #Inner .Entry dl{}
article #Inner .Entry dt{
    padding-bottom: 5px;
    font-size: 16px;
}
article #Inner .Entry dd{
    font-size: 13px;
}
article #Inner .Entry:hover{
	cursor: pointer;
	border: 1px solid #9f9f9f;
}
article #Inner .Entry:hover .thumb{
    cursor: pointer;
    opacity: 0.5;
}
article #Inner .Entry:hover dt a{
    text-decoration: none;
}


@media screen and (max-width:480px){
article #Inner{
    width: 90%;
    display: block;
}
article #Inner .Entry{
    width: 100%;
}
article #Inner .Entry .thumb{}
article #Inner .Entry dl{}
article #Inner .Entry dt{}
article #Inner .Entry dd{}
article #Inner .Entry:hover .thumb{}
article #Inner .Entry:hover dt{}

}