@charset "UTF-8";
/* CSS Document */


/****************************************************************
共通
****************************************************************/

ul {
	list-style: none;
	padding-left: 0;
}

.br-sp {
    display: none;
}

.readmore{
    position: relative;
    box-sizing: border-box;
    margin-bottom: 5%;
}

.readmore-content{
    position: relative;
    overflow: hidden;
    /*以下お好み*/
    /*高さの初期値*/
    height: 200px;
}
.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: #000;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
}
.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;
}

.print_colorlist {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9%;	
}

.print_colorlist li {
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
    width: 7.5%;
}

.cotx {
	font-size: 12px;
	line-height: 18px;
}



/*SPCSSここから*/
@media screen and (max-width:767px) {
	
.br-pc {
    display: none !important;
}

.br-sp {
    display: inline-block;
}

.print_colorlist {
	gap: 2%;
}

.print_colorlist li {
	width: 14%;
	padding-bottom: 0;
}

.cotx {
	margin-bottom: 3px !important;
}

}