/*幅とマージン設定 */
.ac-container{
    width: 920px;
    margin: 20px auto 30px auto;
}
 
/*クリックできるようにする設定とか */
.ac-container label{
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    padding: 0px 0px;
    position: relative;
    z-index: 20;
    display: block;
    height: 163px;
    cursor: pointer;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
/*    line-height: 33px;*/
    font-size: 19px;
    background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    box-shadow: 
        0px 0px 0px 1px rgba(155,155,155,0.3), 
        1px 0px 0px 0px rgba(255,255,255,0.9) inset, 
        0px 2px 2px rgba(0,0,0,0.1);
}
 
/*ホバー時のラベルを白にする */
.ac-container label:hover{
    background: #fff;
}
 
/*クリック時にチェックボックスをオンにする */
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
    background: #CCCCCC;
    color: #3d7489;
    text-shadow: 0px 0px 0px rgba(255,255,255, 0.6);
    box-shadow: 
        0px 0px 0px 1px rgba(155,155,155,0.3), 
        0px 0px 0px rgba(0,0,0,0.1);
}
 
/*下向き矢印アイコンを入れる */
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
    content: '';
    position: absolute;
    width: 69px;
    height: 22px;
    left: 0px;
    top: 163px;
    background: transparent url(2015_images/arrow_down.jpg) no-repeat center center;  
}
 
/*選択後に表示される上向きの矢印アイコンを入れる */
.ac-container input:checked + label:hover:after{
    background-image: url(2015_images/arrow_up.jpg);
}
 
/*ラジオボタンを隠す */
.ac-container input{
    display: none;
}
 
/*コンテンツ部分の表示・非表示の設定 */
.ac-container article{
    background: rgba(255, 255, 255, 0.5);
    margin-top: 25px;
	margin-bottom: 8px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition: 
        height 0.3s ease-in-out, 
        box-shadow 0.6s linear;
}
.ac-container input:checked ~ article{
    transition: 
        height 0.5s ease-in-out, 
        box-shadow 0.1s linear;
    box-shadow: 0px 0px 0px 0px rgba(155,155,155,0.3);

}
 
/*コンテンツの部分のスタイル変更
.ac-container article p{
/*  font-style: italic;
    color: #777;
/*  line-height: 0px;
    font-size: 14px;
    padding: 10px;
    text-shadow: 0px 0px 0px rgba(255,255,255,0.8);
}*/
  
  
/*３つのクラスの高さを定義する*/
.ac-container input:checked ~ article.ac-S{
    height: 250px; 
}
.ac-container input:checked ~ article.ac-M{
    height: 400px;
}
.ac-container input:checked ~ article.ac-L{
    height: 600px;
}
.ac-container input:checked ~ article.ac-LL{
    height: 800px;
}