@charset "UTF-8";

/*----------------------------------------------------
    共通
----------------------------------------------------*/

.viral-box-wrap.column1 .basic-column-box {
  margin-top: 2rem;
}

/* oki_20220630 */
.kanren {
    border: 3px solid #d4f0a0;
    padding: 20px 30px;
    margin: 50px 0;
    border-radius: 1rem;
    position: relative;
    box-sizing: border-box;
}
.midasi {
    font-size: 110%;
    font-weight: bold;
    margin-bottom: 15px;
}
.kanren br {
	display: none;
}

.readmore-content {
    position: relative;
    overflow: hidden;
    height: 100px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    z-index: 1;
    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: 5px auto;
    z-index: 2;
    padding: 2px 15px;
    background-color: #f4e188;
    border-radius: 10px;
    color: #4d423a;
}
.readmore-label:before{
    content: "\7D9A\304D\3092\8AAD\3080";
}

.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: "\9589\3058\308B";
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/



/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

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


}
