<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("slick.css");
@import url("viewer.css");


/*----------------------------------------
　search-area
----------------------------------------*/
.product-search-inner{
  max-width: 1160px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.search-area{
  background: #f7f7f7;
  padding: 80px 0;
}

.search-box{
  text-align: center;
  margin-top:   30px;
}

.search-box .note {
	color:#666;
}

.search-ttl{
  font-size: 30px;
  font-weight: 700;
  background: url("icon_search.png") left center no-repeat;
  padding-left: 50px;
  border-bottom: 1px solid #1e2973;
  padding-bottom: 5px;
  margin-bottom: 5px;
}


/**検索ボタン**/
.search-area input[type=search] {
	-webkit-appearance: none;
	display: inline-block;
	margin-right: -5px;
	margin-bottom: 20px;
	padding: 10px 20px;
	width: 100%;
  max-width: 560px;
	height: 50px;
	font-size: 100%;
	box-sizing: border-box;
	border-radius: 50px 0 0 50px;
	border: 1px solid #ccc;
	border-right: none;
  box-shadow: 0px 5px 12px -6px #969696;
  border: 1px solid #1e2973;
  
}

.search-area input[type=search]:focus,.search-area input[type=submit]:focus {
	outline:0;
  
}

.search-area input[type=submit] {
	-webkit-appearance: none;
	display: inline-block;
  cursor: pointer;
	padding: 0 10px;
	color: #fff;
	width: 140px;
	height: 50px;
	font-size: 100%;
	vertical-align: top;
	border: none;
	border-radius: 0 50px 50px 0;
	background: url("icon_search.png") left center no-repeat #1e2973;
  box-shadow: 0px 5px 12px -6px #969696;
  transition: all .2s ease;
}
.search-area input[type=submit]:hover {
  opacity: 0.8;
  transition: all .2s ease;
}
.search-bottom{
  margin-top: 50px;
  font-size: 14px;
}
.search-bottom p {
    margin-top: 15px;
}

/*タブ*/
.tab-wrap{
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #1e2973;
  display: block;
  order: -1;
}
.tab-label {
  color: #222;
  background: #e1e2ea;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 0 10px 0 0;
  /*flex: 1;*/
  width: 25%;
  font-size: 18px;
}
.tab-label:after {
  content: url("icon_under02.png");
  margin-left: 5px;
  position: relative;
  top:-2px;
}
.tab-label:first-of-type {
  margin-left: 20px;
}
.tab-label:not(:last-of-type) {
  margin-right: 1%;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #1e2973;
  color: #fff;
}
.tab-switch:checked+.tab-label:after {
  content: url("icon_under.png");
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 3% 3%;
  opacity: 1;
  transition: .5s opacity;
  background: #fff;
  box-shadow: 0px 5px 12px -6px #969696;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*改行非表示*/
.tab-label br{
  display: none
}

/*アコーディオン*/
.tab-content dl{
  width: 23%;
    margin: 1%;
  font-size: 16px;
}
.tab-content dl dt{
  background: #3a76b4;
  border-radius: 50px;
  padding: 5px 0;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all .2s ease;
}
.tab-content dl dt a{
  color: #fff;
}

.tab-content dl dt:after{
##  content: url("icon_plus.png");
  margin-left: 10px;
  position: relative;
  top:2px;
}
.tab-content dl dt.haschild:after{
  content: url("icon_plus.png");
}

.tab-content dl dt:hover{
  opacity: 0.8;
  transition: all .2s ease;
}
.tab-content dl dt.btn-active:after{
  content: url("icon_minus.png");
}
.tab-content dl dd{
  padding: 5px 4% 0;
  display: none;
}
.tab-content dl dd:before{
  content: "－ ";
  font-weight: 700;
}
.tab-content dl dd a{
  text-decoration: underline;
}
.tab-content dl dd a:hover{
  text-decoration: none;
}


@media screen and (max-width: 800px) {
/**検索ボタン**/
.search-box {
    /*min-width: 300px;*/
    min-width: 90%;
}
.search-area input[type=search] {
	font-size: 11px;
	max-width: 100%;
    border-radius: 5px;
    margin-right: 0px;
    padding: 10px 15px;
}

.search-box .note {
	margin-top:15px;
	font-size:14px;
}

.search-area input[type=submit] {
	-webkit-appearance: none;
	display: inline-block;
  cursor: pointer;
	padding: 0 5px 0 10px;
	color: #fff;
	/*width: 100px;*/
	width: 140px;
	/*height: 50px;*/
	height: 40px;
	font-size: 14px;
	vertical-align: top;
	border: none;
	/*border-radius: 0 50px 50px 0;*/
	border-radius: 100px;
	background: url("icon_search.png") left center no-repeat #1e2973;
  /*background-size: 30%;*/
  background-size: 34px;
  box-shadow: 0px 5px 12px -6px #969696;
}
.tab-label {
  padding: 10px 1%;
  width: 32.6%;
  font-size: 14px;
  line-height: 1.2;
}
.tab-content dl {
    /*width: 48%;*/
    width: 100%;
    margin: 1%;
    font-size: 14px;
}
.tab-label:first-of-type {
  margin-left: 0;
}

}

@media screen and (max-width: 641px) {
.search-area{
  padding: 40px 0;
}
.product-search-inner{
  padding: 0 15px;
}
  .search-top p{
    font-size: 14px;
  }
.search-ttl {
    font-size: 22px;
    background: url(icon_search.png) left center no-repeat;
  background-size: 8%;
    padding-left: 10%;
    border-bottom: 1px solid #1e2973;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
  
.search-bottom {
    margin-top: 25px;
}

.tab-label br{
  display: block;
}

}


/*----------------------------------------
　result-area
----------------------------------------*/
.result-area{
  padding: 80px 0;
}
/*.result-area .product-search-inner{
  max-width: 1180px;
}*/
.result-box{
  display: flex;
  flex-wrap: wrap;
}
.result-box h4{
  font-size: 14px;
  margin: 10px 0;
}
.result-box dt{
  border-left: 2px solid #1e2973;
  font-size: 13px;
  padding-left: 10px;
	margin-bottom: 5px;
  font-weight: 500;
  line-height: 1;

}
.result-box li{
  width: 18%;
  margin: 0 1% 8%;
}
.result-img{
  text-align: center;
}
.result-box dd{
  font-size: 12px;
  padding-left: 10px;
  margin-bottom: 10px;
}
.result-btn{
  border-radius: 50px;
  background: #1e2973;
  display: block;
  color: #fff;
  padding: 5px;
  text-align: center;
}
.result-btn:after{
  content: "&gt;";
  margin-left: 8px;
}

.a-pagination{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #1e2973;
}
.result-bottom .a-pagination{
  border-bottom: none;
}
.a-pagination li{
  min-width: 30px;
  margin: 0.4%;
  text-align: center;
	padding: 0 5px;
}
.a-pagination li a{
  display: block;
	padding: 0 5px;
}
.a-pagination .a-normal{
  display: block;
  background: #ebebeb;
}
.a-pagination .a-selected{
  display: block;
  background: #009fe8;
  color: #fff;
}
.a-pagination .a-selected a{
  color: #fff;
  font-weight: 500;
}
.word{
  font-size: 18px;
  font-weight: 700;
}
.word span{
  font-size: 16px;
  font-weight: 400;
  margin-left: 15px;
}
.word-result{
  font-size: 16px;
  margin-bottom: -30px;
}

@media screen and (max-width: 768px) {
.result-box li{
  width: 23%;
} 
}

@media screen and (max-width: 641px) {
.result-area{
  padding: 40px 0;
}
.a-pagination{
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e2973;
}
.word{
  font-size: 16px;
}
.word span{
  font-size: 14px;
  margin-left: 10px;
}
.word-result{
  font-size: 14px;
  margin-bottom: 0;
}
.result-box li{
  width: 48%;
  margin: 0 4% 10% 0;
}
.result-box li:nth-child(even){
  margin-right: 0;
} 
.result-btn{
  font-size: 14px;
}
.result-bottom .a-pagination{
  margin-top: 0;
}
}




/*-------.---------------------------------
　equipment-detail
----------------------------------------*/
.equipment-detail{
  padding: 30px 0 80px;
}
.equipment-detail h3{
  font-size: 32px;
  border-left: 10px solid #1e2973;
  line-height: 1.4;
  padding-left: 10px;
}
.equipment-detail .cat{
  font-size: 18px;
  padding-left: 20px;
  font-weight: 500;
}
.equipment-detail-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
.equipment-detail .out {
	font-size:30px;
	text-align: center;
	color: #f90102;
	border: 2px solid #25317f;
    padding: 15px;
}
.detail-img{
  max-width: 560px;
  overflow: hidden;
  width: 48%;
}
.detail-info{
  max-width: 560px;
  width: 48%;
}
.detail-info dt{
  font-size: 18px;
  font-weight: 700;
  color: #1e2973;
  border-bottom: solid 2px #6894c1;
  position: relative;
}
.detail-info dt:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 22%;
  border-bottom: 2px solid #25317f;
}
.detail-info dd{
  font-size: 16px;
  margin-bottom: 20px;
}
.detail-info dd br{
  line-height: initial;
}

@media screen and (max-width: 641px) {
.equipment-detail-box{
  margin-top: 35px;
}
.equipment-detail{
  padding: 0 0 40px;
}
.equipment-detail h3{
  font-size: 24px;
  border-left: 5px solid #1e2973;

}
.equipment-detail .cat{
  font-size: 16px;
  padding-left: 15px;
}
.equipment-detail .out {
	font-size:20px;
	text-align: left;
    padding: 10px;
}
.detail-img{
    margin-bottom: 25px;
  width: 100%;
}
.detail-info{
  width: 100%;
}
.detail-info dt{
  font-size: 16px;

} 
.detail-info dd{
  font-size: 14px;
  margin-bottom: 10px;
}
}








/*sloder*/
#modal li{
  position: relative;
  transition: all .2s ease;
}
#modal li:hover{
/*opacity: 0.8*/
}
#modal li:after{
  content: url("icon_modal.png");
  position: absolute;
  right: 0;
  bottom: -7px;
}
#modal:hover li:after{
  display: none;
  transition: all .2s ease;
}
.slick-slide{
  /*cursor: pointer;*/
}
.slick-dots{
  display: flex;
  margin: 2% 0 0 0;
    padding: 0 0 0 0;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.slick-dots li{
  box-sizing: border-box;
    margin: 0 1% 2% 1%;
    padding: 0 0%;
    width: 23%;
    height: auto;
    border: none;
  cursor: pointer;
}
.slick-dots .slick-active{
  border: 4px solid #1f97d5;
}


/*btn-area*/
.btn-area{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
  
}
.back-list{
  background: #1e2973;
  display: block;
  text-align: center;
  color: #fff;
  padding: 10px 2%;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  margin-right: 2%;
  max-width: 350px;
  width: 30%;
  
}
.back-list:before{
  content: "&lt;";
  margin-right: 10px;
  font-size: 16px;
}

.to-ask{
  background: #e2972c;
  display: block;
  text-align: center;
  color: #fff;
  padding: 10px 2%;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  margin-left: 2%;
  max-width: 350px;
  width: 44%;
}
.to-ask:before{
  content: url("icon_contact.png");
  margin-right: 10px;
  font-size: 16px;
}
@media screen and (max-width: 641px) {
.back-list{
  padding: 10px 2%;
  font-size: 16px;
  font-weight: 500;
  margin-left: 0;
  width: 80%;
  order: 2;
  margin-top: 4%;
} 
.to-ask{
  padding: 5px 2% 11px;
  font-size: 16px;
  font-weight: 500;
  margin-left: 0;
  width: 80%;
  order: 1;
}  
.to-ask:before{
  position: relative;
  top: 5px;
}
#modal li:after{
  display: none;
}
}


/*画像サイズ調整 一覧*/
.result-box .result-img {
  height: 149px;
	background: #daecf2;
	border: 1px solid #dddddd;
	text-align: center;
	position: relative;
}
.result-box .result-img img {
  max-height: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1160px) {
.result-box .result-img {
  height: calc(100vw * 0.125);
}
}
@media screen and (max-width: 768px) {
.result-box .result-img {
  height: calc(100vw * 0.155);
}	
}
@media screen and (max-width: 641px) {
.result-box .result-img {
  height: calc(100vw * 0.328);
}	
}

/*画像サイズ調整 詳細*/
#modal li {
	height: 396px;
	background: #daecf2;
	border: 1px solid #dddddd;
	text-align: center;
	justify-content: center;
  align-items: center;
	overflow: hidden;
	position: relative;
  /*display: flex;*/
}
/*#modal li .hvx{
  height: 396px;
	display: table-cell;
	vertical-align: middle;
}*/
#modal .icon{

	/*display: table-cell;
	vertical-align: middle;*/
}
/*#modal .icon:after {
    content: url(icon_modal.png);
    position: absolute;
    right: 0;
    bottom: -7px;
}*/
.slick-slide img {
    max-height: 100%;
	cursor: pointer;
	position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
}
.slick-dots li {
  height: 94px;
	text-align: center;
    /*display: flex;*/
	overflow: hidden;;
	background: #daecf2;
	border: 1px solid #dddddd;
	position: relative;
}
.slick-dots li img {
  max-height: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%); /* Safari用 */
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1160px) {

#modal li {
    height: calc(50vw * 0.67);
}
.slick-slide img {
    max-height: 100%;
}
	
	
.slick-dots li {
    height: calc(50vw * 0.155);
}
.slick-dots li img {
    max-height: 100%;
}
}
@media screen and (max-width: 1000px) {
#modal li {
    height: calc(50vw * 0.665);
}	
}
@media screen and (max-width: 800px) {
#modal li {
    height: calc(50vw * 0.65);
}	
}
@media screen and (max-width: 641px) {
#modal li {
    height: calc(100vw * 0.69);
}
.slick-dots li {
    height: calc(100vw * 0.159);
}
}



/*3点リーダー２行*/
.result-box h4 , .result-box dd.katashiki {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.result-box h4 .santen{
	position: relative;
}

@media screen and (-ms-high-contrast: none) {
.result-box h4{
	position: relative;
	max-height: calc(1.5em * 2);
	overflow: hidden;
    background: #FFF;
}
    
.result-box h4 span.santen{
    margin-right: 1em;
	position: static;
}

.result-box h4:before {
	content: "…";
	bottom: 0;
	right: 0;
	position: absolute;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	padding-left: 0.5em;
}

.result-box h4:after {
	content: "";
	width: 100%;
	height: 100%;
    margin-left: -1em;
	position: absolute;
	background: #FFF;
}
	
.result-box .katashiki{
	position: relative;
	max-height: calc(1.5em * 2);
	overflow: hidden;
    background: #FFF;
	word-break: break-all;
}
    
.result-box .katashiki span.santen{
    margin-right: 1em;
	position: static;
}

.result-box .katashiki:before {
	content: "…";
	bottom: 0;
	right: 0;
	position: absolute;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%);
	padding-left: 1.4em;
}

.result-box .katashiki:after {
	content: "";
	width: 100%;
	height: 100%;
    margin-left: -0em;
	position: absolute;
	background: #FFF;
}
}

/*result-btn修正*/
.result-box li{
	position: relative;
	padding-bottom: 40px;
}
.result-btn {
    position: absolute;
    bottom: 0;
    width: 100%;
}



img {
	max-height: 100%;
}


/*クリアボタン*/
.clear_b{
  	border-radius: 50px;
    background: #1e2973;
    display: block;
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 400px;
    max-width: 100%;
    margin: 30px auto 0;
}
.clear_b:after{
  content: "&gt;";
  margin-left: 8px;
}

@media screen and (max-width:641px){
.clear_b{
  	font-size:14px;
}
}





















</pre></body></html>