@charset "UTF-8";


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-family:"SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
}

p {
	font-size:15px;
}

/*================================================
 *  続きを読む
 ================================================*/
.readmore{
    position: relative;
    box-sizing: border-box;
    /*以下お好み*/
    /* ボーダーを付ける場合 */
    padding: 10px;
    border: 1px solid #CCC;
}

.readmore-content{
    position: relative;
    overflow: hidden;
    /*以下お好み*/
    /*高さの初期値*/
    height: 520px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #ed9930;
    border-radius: 10px;
    color: #FFF;
}
.readmore-label:before{
    content: 'read more';
}

.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
    /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
    content: 'close';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/*================================================
 *  出展形態ボタン状
 ================================================*/
.real {
     display:inline-block;
     width:50px;
     padding:3px 1px 1px 1px;
     font-size: 0.8em;
     color: #ffffff;
     font-weight: bold;
     text-decoration: none;
     text-align: center;
     background-color: #f39800; /*ボタン色*/
     border-radius: 10px; /*角丸*/
     transition: all 0.5s;
     border: none;
     margin-left: 5px;
}

.virtual {
     display:inline-block;
     width:50px;    
     padding:3px 1px 1px 1px;
     font-size: 0.8em;
     color: #ffffff;
     font-weight: bold;
     text-decoration: none;
     text-align: center;
     background-color: #48b9e2; /*ボタン色*/
     border-radius: 10px; /*角丸*/
     transition: all 0.5s;
     border: none;
}