@charset "utf-8";
/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2013/5/10
 */

/*------------------------index.html------------------------*/

article {
    text-align: left;
}

article h3 {
    font-size: 14px;
    line-height: 35px;
    overflow: hidden;

    height: 35px;
    padding: 5px 25px 5px 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e9e9e9;
    background: linear-gradient(to bottom, #fff 0%, #f7f7f7 100%);
}

article h3 time {
    font-size: 10px;
    line-height: 20px;
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: normal;
    padding: 0 8px;
    text-align: center;
    vertical-align: text-bottom;
    color: #fff;
    border-radius: 2px;
    background: #C1185B;
}

article h3 time:not(:target) {
    line-height: 20px\9;
}

:root article h3 time {
    line-height: 20px\9;
}

article h3+div {
    padding: 15px;
    color: #000;
}

/* 新着情報 開閉 */
article h3 {
    position: relative;
    cursor: pointer;
}

article h3:after {
    font-family: FontAwesome;
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 10px;
    display: inline-block;
    color: #000;
}

article h3.open:after {
    content: '';
}

article h3+div {
    font-size: 14px;
    line-height: 2;
    border-bottom: 1px solid #e9e9e9;
}
@media screen and (max-width:480px){

    article h3 {
        font-size: 12px;
        line-height: 30px;
        overflow: hidden;
        height: 30px;
        padding: 5px 25px 5px 10px;
    }

    article h3+div {
        padding: 10px;
    }
    article h3:after {
        font-size: 14px;
    }

    article h3+div {
        font-size: 12px;
    }
}

