/*-----スライダーのためのcss------*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 60vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    z-index: 3;
    top: 20%;/*矢印の位置*/
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid red;/*矢印の色*/
    border-right: 2px solid red;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/* ブログのテーブル修正20250130 */
.comparison__table__three__wrapper table {
	width: 100%!important;
}
@media screen and (max-width: 769px) {
/* 	.comparison__table__three__wrapper.warp  {
		padding-top: 20px;
	}
	.comparison__table__three__wrapper.warp::before {
		display: block;
		position: sticky;
		content: "スクロールできます →";
        left: 0;
		text-align: end;
		margin-bottom: 5px;
		color: #ccc;
		font-size: 12px;
	} */
	.comparison__table__three__wrapper table {
		width: 900px!important;
	}
	.comparison__table__three__wrapper.warp table td:first-child, .comparison__table__three__wrapper.warp table th:first-child {
		width: 18%!important;
	}
	.comparison__table__new table {
		width: 650px!important;
	}
	.comparison__table__three__wrapper table th:first-child, .comparison__table__three__wrapper table td:first-child {
		width: 110px!important;
	}
}

.comparison__table__three__wrapper table tr:first-child th {
	background-color: #EFFDF8!important;
}
.comparison__table__three__wrapper table th:first-child {
	background-color: #EFFDF8!important;
}

.pureflat_cell {
	background-color: #FDEFEE!important;
}

/* .Single__content table th {
	background-color: #EFFDF8!important;
}

.Single__content table tr:first-child td {
	background-color: #EFFDF8;
}

.Single__content table td:first-child {
	background-color: #EFFDF8;
} */