@charset "UTF-8";
/* CSS Document */

#repair_parts{
	width: 100%;
	max-width: 1100px;
	margin: 180px auto 200px;
}
#repair_parts h2{
	padding-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
	border-bottom: 2px solid #cf251c;
}
.txt-block{
	padding: 60px 0 55px;
}
.txt-block p{
	font-size: 16px;
	padding-bottom: 30px;
	line-height: 2;
}
.txt-block p:last-child{
	padding-bottom: 0;
}
.txt-block p.col-r{
	color: #cf251c;
}
.rp-table-wrapper table{
	border: 1px solid #DDDDDD;
}
.rp-table-wrapper table,.rp-table-wrapper th,.rp-table-wrapper td{
    border-spacing: 0;
}
.rp-table-wrapper table tr th,
.rp-table-wrapper table tr td{
	border-right: 1px solid #DDDDDD;
	text-align: center;
}
.rp-table-wrapper table tr th:last-child,
.rp-table-wrapper table tr td:last-child{
	border-right: none;
}
.rp-table-wrapper table tr th{
	padding: 20px 0;
	background: #efefef;
	border-bottom: 1px solid #dddddd;
	font-size: 16px;
	font-weight: bold;
}
.rp-table-wrapper table tr td{
	vertical-align: top;
}
.rp-table-wrapper table tr td:nth-child(1){
	min-width: 200px;
}
.rp-table-wrapper table tr td:nth-child(2){
	min-width: 180px;
	line-height: 1.7
}
.rp-table-wrapper table tr td:nth-child(3){
	min-width: 100px;
	line-height: 1.7;
}
.rp-table-wrapper table tr td:nth-child(4){
	min-width: 150px;
	border-right: none;
}
.rp-table-wrapper table tr td:nth-child(5){
	min-width: 80px;
}
.rp-table-wrapper table tr td:nth-child(6){
	min-width: 100px;
}
.rp-table-wrapper table tr td:nth-child(7){
	min-width: 290px;
}
.rp-table-wrapper table tr td:nth-child(1),
.rp-table-wrapper table tr td:nth-child(2),
.rp-table-wrapper table tr td:nth-child(3){
	vertical-align: middle;
}
.rp-table-wrapper table tr:not(:last-child) td{
	border-bottom: 1px solid #dddddd;
}
.rp-table-wrapper table tr td:nth-child(1) img{
	width: 180px;
}
.rp-table-wrapper table tr td:nth-child(3) .wm-vr{
	writing-mode: vertical-rl;
}
.rp-table-wrapper table tr td ul li{
	min-height: 80px;
	border-bottom: 1px solid #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rp-table-wrapper table tr td ul li.parts_name{
	padding-right: 5px;
	line-height: 1.7;
}
.rp-table-wrapper table tr td ul li.note{
	display: block;
}
.rp-table-wrapper table tr td ul li.note p{
	padding: 5px;
	font-size: 12px;
	text-align: left;
	line-height: 1.8;
}
.rp-table-wrapper table tr td ul li:last-child{
	border-bottom: none;
}
.rp-table-wrapper table tr td:nth-child(4) p{
	text-align: center;
}


/*ポップアップ*/
.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
.pop-up-wrap .img-wrap{
	width: 70px;
	height: 70px;
	padding: 5px;
}

.pop-up-wrap .img-wrap a{
	position: relative;
	display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pop-up-wrap .img-wrap  a img{
	transition: all .4s ease;
}
.pop-up-wrap .img-wrap  a img:hover{
	transform:scale(1.2,1.2);
}
.pop-up-wrap .img-wrap a:after{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background: url(https://bermas2211.itembox.design/item/img/icon-maximize.png) no-repeat;
	background-size: contain;
    position: absolute;
    top: 3px;
    right: 3px;
}

.modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8);
      display: none;
	  z-index: 15;
	
    }

.bigimg {
      position: absolute;
      width: 80%;
      max-width: 400px;
      top: calc(50% - 200px);
      left: 0;
      right: 0;
      margin-right: auto;
      margin-left: auto;
    }
.bigimg img{
	width: 100%;
}
.close-btn {
    color: #fff;
    font-size: 40px;
	line-height: 1;
	cursor:pointer;
    position: absolute;
    right: calc(50% - 235px);
    top: calc(50% - 235px);
    }

.close-btn a {
    color: #fff;
    text-decoration: none;
    }

.contact-btn{
	width: 220px;
	height: 60px;
	margin: 0 auto;
	
}
.contact-btn a{
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
	font-size: 15px;
	line-height: 4.2;
	background: #000;
	transition: all .4s ease;
}
.contact-btn a:hover{
	background: #cf251c;
}


@media screen and (max-width:760px){
	#repair_parts{
		width: 95%;
		margin: 80px auto 200px;
	}
	#repair_parts h2{
		line-height: 1.7;
	}
	.rp-table-wrapper{
		overflow-x:scroll;
		overflow-y: hidden;
		webkit-overflow-scrolling:touch;
		
	}
	.rp-table-wrapper::-webkit-scrollbar { 
		height:5px; 
	} 
	.rp-table-wrapper::-webkit-scrollbar-track { 
		background: #ddd; 
		border-radius: 5px; 
	}
	.rp-table-wrapper::-webkit-scrollbar-thumb { 
		border-radius: 5px; background: #999; 
	}
	.rp-table-wrapper table{
		width: 100%;
		min-width: 1100px;
	}
	.txt-block p {
		font-size: 14px;
		line-height: 1.7;
	}
}/*650px*/
@media screen and (max-width:500px){
	.close-btn {
      right: 10px;
}