    /* oki_20220509 */
    .kanren {
        /* border: 3px solid #ff5252; */
        border: 1px solid #0b2c5e;
        padding: 20px 30px ;
        margin: 30px 0;
        position: relative;
        box-sizing: border-box;
        z-index: 0;
    }
    .kanren ul{
        margin: 0 auto 25px !important;
    }
    .midasi {
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        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;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        margin: 5px auto;
        z-index: 2;
        padding: 6px 15px;
        /* background-color: #ff7777; */
        background-color: #dfdfdf;
        /* border-radius: 20px; */
        color: #000;
    }
    .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;
    }

    /* oki_20220509 */
























// Text with ellipsis
.container {
  background: #eee;
  overflow: hidden;
  width: 100%;

  p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}




/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {
/*/////////////PC用のCSSをここに作成してください。/////////////*/

#index .addParts01 .block .box {
    width: 49%;
    padding: 0 4rem 4rem;
}

#index .addParts01 .block .box img {
    max-height: 20rem;
    height: 20rem;
    width: auto;
}
#index .addParts03-company:last-child {
    display: none;
}
.addParts01.lower .block .box {
    width: 49%;
    padding: 0 2rem 3rem;
}

.addParts01.lower .block .box img {
    max-height: 19rem;
    width: auto;
}
#index .addParts01 .block .box img {
    /* min-height: 18rem; */
}	
}/*////////////////////PC用CSSここまで///////////////////*/



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

@media screen and (max-width: 599px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/


/*/////////////必ず中括弧の中に作成してください。/////////////*/


}