@charset "utf-8";

/* ==================================================================
    news.css

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

/* --------------------------------
   □ title
-------------------------------- */

#newsList main h2.title{
    text-align: center;
    border-bottom: none;
    font-size: 175%; /*28px*/
    font-weight: 700;
}
    #newsList main h2.title span.inline{
        display: inline-block;
    }
#newsList main h2.title small{
    font-size: 47%;
    display:inline-block;
    margin-bottom: 10px;
    position: relative;
    padding: 0 27px;
}
    #newsList main h2.title small:before,
    #newsList main h2.title small:after{
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 23px;
        height: 2px;
        background-color: #444;
        -webkit-transform: rotate(-60deg);
        transform: rotate(-60deg);
    }
    #newsList main h2.title small:before{
        left:0;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
    }
    #newsList main h2.title small:after{
        right: 0;
    }
    #newsList main h2.title span.marker{
        background: linear-gradient(transparent 60%, #FCF069 60%);
    }
    #newsList main h2.title span.en{
        display: block;
        font-size: 47%;
        margin-top: 15px;
    }


/* --------------------------------
   □ news
-------------------------------- */

#listArea{
    padding-top: 40px;
}

#newsList ul.newslist{
    margin-bottom: 65px;
}
    #newsList ul.newslist li{
        margin-bottom: 10px;
        overflow: hidden;
    }
        #newsList ul.newslist li a{
            color: #444;
            display: block;
            padding: 15px 10px;
        }
        #newsList ul.newslist li a:hover{
            text-decoration: none;
            background: #F5F5F5;
        }
    #newsList ul.newslist li dl dt{
        width: 18%;
        float: left;
    }
        #newsList ul.newslist li dl dt span{
            border: 1px solid #444;
            display: inline-block;
            padding: 3px 10px;
            margin-left: 15px;
        }
        #newsList ul.newslist li dl dd{
            width: 82%;
            padding: 3px 0;
        }


/* --------------------------------
   □ details
-------------------------------- */
.details .contents main .entry{
    margin-top: 40px;
}

.details .contents main .entry .body{
    margin-bottom: 40px;
}


.details .contents main section h3{
    text-align: left;
    background-color: rgb(222, 236, 239);
    position: relative;
    padding: 30px 30px 30px 50px;
}

.details .contents main section h3:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 50%;
    background-color: #444;
    border-radius: 2.5px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.details .contents main section h3 span.post_date{
    display: block;
    font-size: 65%;
    line-height: 1.2;
}

.details .contents main section h3 span.post_date span.category{
    border: 1px solid #444;
    display: inline-block;
    padding: 3px 10px;
    margin-left: 15px;
    font-size: 84%;
}

@media only screen and
(max-width : 767px) {


/* --------------------------------
   □ news
-------------------------------- */
    #newsList main h2.title{
        font-size: 150%; /*24px*/
        padding-bottom: 30px;
    }
        #newsList main h2.title span.marker {
            font-size: 100%; /*24px*/
            margin-bottom: 5px;
        }
        #newsList main h2.title small,
        #newsList main h2.title span.en{
            font-size: 63%; /*15px*/
        }

    #newsList ul.newslist li dl dt{
        width: 100%;
        padding-bottom: 0.5em;
        font-size: 88%;
    }
    #newsList ul.newslist li dl dd{
        width: 100%;
    }
    #newsList ul.newslist{
        margin-bottom: 30px;
    }
    #newsList ul.newslist li dl dt span{
        font-size: 88%;
    }


/* --------------------------------
   □ details
-------------------------------- */
.details .contents main .entry{
    margin-top: 6%;
}

.details .contents main .entry .body{
    margin-bottom: 6%;
}


.details .contents main section h3{
    padding: 4% 4% 4% 30px;
}

.details .contents main section h3:before {
    width: 5px;
    height: 50%;
    position: absolute;
    left: 10px;
}

.details .contents main section h3 span.post_date{
    line-height: 1.6;
    margin-bottom: 8px;
}

.details .contents main section h3 span.post_date span.category{
    border: 1px solid #444;
    display: inline-block;
    padding: 3px 10px;
    margin: 0 0 0 15px;
    font-size: 84%;
    vertical-align: bottom;
}


}


