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

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

body {
 color: #CFAC23;
 background: #150A06;
}

.freetxt_box {
	
	
}

article {
	text-align: left;
	color: #EEE;
}

article h3 {
    
	clear: both;
	font-size: 14px;	/*文字サイズ*/
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	background: #502A0A url(../img/bg2.png) no-repeat right top;	/*背景色（グラデーションが使えない古いブラウザ向け）と、背景画像の読み込み*/
	background: url(../img/bg2.png) no-repeat right top, linear-gradient(#502A0A, #150A06);	/*背景画像の読み込みとグラデーション*/
	color: #fff;	/*文字色*/
	border-radius: 5px 5px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順番。*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);	/*テキストの影。右に、下に、広げる幅。0,0,0は黒で0.3は透明度30%の事。*/

}

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: #c90;
}

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

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

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

/* 新着情報 開閉 */
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: #eee;
}

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

article h3+div {
    font-size: 14px;
    line-height: 2;
    border-bottom: 1px solid #544117;
}
@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;
    }
}
