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

.emphasize {
	font-size: 2.0rem;
	font-weight: bold;
	color: #000;
	margin: 20px auto;
    text-align: center;
}

span.txt_marker02 {
	font-weight: bold;
    font-size: 2.0rem;
    color: #0028ad;
    position: relative;
    padding: 0 0 0.1rem 0;
}

span.txt_marker03 {
	font-weight: bold;
    font-size: 2.0rem;
    color: #e01a2e;
    position: relative;
    padding: 0 0 0.1rem 0;
}

.catchphrase {
	font-size: 1.9rem;
}

.manufacturer {
	font-size: 1.8rem;	
	color: #196A5D;
}

.adjustment01 {
	margin: 25px 0;
}

.adjustment02 {
	margin: 40px 0;	
}

.adjustment03 {
	margin: 53px 0;	
}

.adjustment04 {
	margin: 50px 0;	
}

.condition {
    font-size: 1.2rem;
    line-height: 1.4;
    word-wrap: break-word;
    display: block;	
	margin-top: 10px;
}

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

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


}
/* oki_20220708 */
.kanren {
    border: 1px solid #40c4b0;
    padding: 20px 30px 0;
    margin: 30px 0;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
}
.midasi {
    border-bottom: 2px solid #2b5eab;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}
.kanren br {
	display: none;
}

/* アコーディオンのときに下記追加 */
.readmore-content {
    position: relative;
    overflow: hidden;
    height: 120px;
}
.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;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #2b5eab;
    border-radius: 5px;
    color: #FFF;
    margin-bottom: 5px;
}
.readmore-label:before{
    content: '続きを読む';
}

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