/*------------------------------------------------------------
	機種ページ内　テーブル横スクロール用CSS
------------------------------------------------------------*/

.article_contentBox .tab_btn {
	margin: 1px auto;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.article_contentBox ul.tab_btn[class*="btnTBN_"],
.article_contentBox .tab_btn.wrap {
    margin-bottom: 0;
    flex-wrap: wrap;
}
.article_contentBox .tab_btn li {
    padding: 8px 0;
	display: flex;
    justify-content: center;
    align-items: center;
	color: #666;
	font-size: clamp(12px, 3.75vw, 14px);
	line-height: 1.1;
	text-align: center;
	background-color: #DEDEDE;
	flex: 1 1 auto;
    cursor: pointer;
}
.article_contentBox .tab_btn li.selected {
	background-color: #EA4335;
	color: #000;
}
.article_contentBox ul.tab_btn[class*="btnTBN_"] li,
.article_contentBox .tab_btn.wrap li {
	border-left: solid 1px #FFF;
	border-bottom: solid 1px #FFF;
}
.article_contentBox .tab_btn li + li {
	border-left: solid 1px #FFF;
}
.article_contentBox .btn6with li {
	flex: 1 1 calc(100% / 6);
}
.article_contentBox .btn5with li {
	flex: 1 1 calc(100% / 5);
}
.article_contentBox .btn4with li {
	flex: 1 1 calc(100% / 4);
}
.article_contentBox .btn3with li {
	flex: 1 1 calc(100% / 3);
}
.article_contentBox .btn2with li {
	flex: 1 1 calc(100% / 2);
}
.article_contentBox .tabGroup .tabBox {
	margin: 0 auto !important;
	display: none;
	width: 100%;
    border: none;
	overflow: auto;
}
.article_contentBox .tabGroup .tabBox.selected {
	display: block;
}
.article_contentBox .stickyBox {
	margin: 32px auto 0;
	width: 100%;
	overflow: auto;
}
.article_contentBox .ttl {
    margin: 0 auto;
	padding: 8px;
	text-align: center;
    line-height: 1.4;
	background-color: #666;
	border: 1px solid #b4b4b4;
	position: sticky;
	left: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.article_contentBox div[class*="Box"] > .ttl {
    margin-bottom: -1px;
    width: 100%;
}
.article_contentBox div[class*="Box"] > .table {
    margin: 0;
    width: 100% !important;
	border-collapse: separate;
	border: none;
}
.article_contentBox div[class*="Box"] > .table th,
.article_contentBox div[class*="Box"] > .table td {
	white-space: nowrap;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	border-right: 1px solid #b4b4b4;
	border-bottom: 1px solid #b4b4b4;
}
.article_contentBox div[class*="Box"] > .table tr:first-child th {
	border-top: 1px solid #b4b4b4;
}
.article_contentBox div[class*="Box"] > .table tr th:first-child,
.article_contentBox div[class*="Box"] > .table tr td:first-child {
    border-left: 1px solid #b4b4b4;
}
.article_contentBox div[class*="Box"] > .table .fix1 {
	border-left: 1px solid #b4b4b4;
}
.article_contentBox div[class*="Box"] > .table .fix1,
.article_contentBox div[class*="Box"] > .table .fix2,
.article_contentBox div[class*="Box"] > .table .fix3 {
    position: sticky;
    left: 0;
	z-index: 1;
}
.article_contentBox div[class*="Box"] > .table .blank {
	background-color: #FFF !important;
	border: none !important;
    display: none;
}
.article_contentBox div[class*="Box"] > .table td > div {
    white-space: normal;
}
.article_contentBox .comments {
    margin: 4px 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    color: #808080;
}
.article_contentBox .comments::before {
    content: "◆";
}
.article_contentBox .comments > .iconGear {
	margin: 0 1px 1px 0 !important;
    width: 15px !important;
    height: 15px !important;
    animation: gearSpin 3.0s linear infinite;
    display: none;
}
@keyframes gearSpin {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}
@media(max-width: 600px){
    .article_contentBox .stickyBox {
        margin: 24px auto 0;
    }
    .article_contentBox .ttl {
        padding: 4px;
    }
    .article_contentBox .comments {
        font-size: 12px;
    }
}
