.prodcut_ca {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 1rem 2rem;
  margin: 0 0 2rem 0;
  gap: 1rem 2.5rem;
  background: #f5f5f5;
}
.prodcut_ca a{
  font-size: 0.9rem;
  color: #222;
}
.prodcut_ca a.active{
  color: #000c7b;
}
.prodcut_ca a:hover{
  color: #0015cd;
}


.prodcut_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  gap: 1rem .5rem;
}
.prodcut_list .items{
  display: flex;
  flex-direction: column; 
  justify-content: flex-start;
  cursor: pointer;
  padding: .5rem;
  margin: -.25rem;
}
.prodcut_list .items .pic{
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
  background: #f0f0f0;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  text-align: center;
  overflow: hidden;
}
.prodcut_list .items .pic::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border: 1px solid transparent;
  z-index: 1;
  transform: translateY(-50%);
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.prodcut_list .items .pic::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  border: 1px solid transparent;
  z-index: 1;
  transform: translateX(-50%);
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.prodcut_list .items .pic img{
  width: 100%;
  transform: scale(1.0);
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.prodcut_list .items:hover .pic{
  background: #fff;
}
.prodcut_list .items:hover .pic img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.prodcut_list .items:hover .pic::before{
  height: 100%;
  border-left: 1px solid var(--bs-cyan);
  border-right: 1px solid var(--bs-cyan);
}
.prodcut_list .items:hover .pic::after{
  width: 100%;
  border-top: 1px solid var(--bs-cyan);
  border-bottom: 1px solid var(--bs-cyan);
}
.prodcut_list .items .brand{
  padding: 0;
  font-family: 'Jost', 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size:.9rem;
  text-align: center;
}
.prodcut_list .items .brand img{
  max-height: 15px;
  margin-bottom: .5rem;
}
.prodcut_list .items .model{
  padding: .2rem .5rem 0 .5rem;
  font-family: 'Jost', 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size:.9rem;
  text-align: center;
}
.prodcut_list .items .name{
  padding: .2rem .5rem 0 .5rem;
  font-family: 'SCoreDream', 'OneMobileTitle',system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 500;
  font-size:1.0rem;
  color: #000;
  line-height: 1.3;
	word-break:keep-all;
	word-wrap:break-word;
  text-align: center;
}
.prodcut_list .items .price{
  padding: .5rem .5rem 0 .5rem;
  font-family: 'Jost', 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size:.8rem;
  color: var(--bs-cyan);
  text-align: center;
}
.prodcut_list .items .summary{
  padding: .5rem .5rem 0 .5rem;
  /* font-family: 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif; */
  font-size:.75rem;
  color: #8b8b8b;
  letter-spacing: -1px;
  line-height: 1.2;
	/* word-break:keep-all;
	word-wrap:break-word; */
  text-align: center;
}
@media (max-width: 767.98px) {
  .prodcut_list {
    gap: 1rem .3rem;
  }
  .prodcut_list .items{
    padding: .25rem;
    margin: -.15rem;
  }
  .prodcut_list .items .pic{
    margin-bottom: .5rem;
  }
  .prodcut_list .items .name{
    font-size:.85rem;
  }
}


.no_data{
	padding: 1.5rem 0 3.5rem 0;	
  /* background: #f1f1f1; */
}


.sub_product_view{
  padding: 0;
  margin: 0 auto;
}
.sub_product_view .item_box{
  display: flex;
  justify-content: space-between;
  gap: 0 5rem;
}
.sub_product_view .item_box>div{
  width: 50%;
}
.sub_product_view .pic {
  background: #f0f0f0;
}
.sub_product_view .pic img{
  width: 100%;
  /* opacity: .9; */
}
.sub_product_view .subject{
  font-family: 'SCoreDream', 'OneMobileTitle', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 600;
  font-size: 2rem;
	word-break: keep-all;
	word-wrap: break-word;
  padding: 0 0 .5rem 0;
  margin: 0;
}
.sub_product_view .summary{
  margin: 0;
  padding: .5rem 0;
  font-size:.8rem;
  color: #454545;
	word-break:keep-all;
	word-wrap:break-word;
}
.sub_product_view .list{
  width: 100%;
  padding: 0;
  margin: .5rem 0 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222;
}
.sub_product_view .list_item{
  width: 100%;
  padding: .8rem 0;
  margin: 0;
  display: flex;
  justify-content: left;
  border-bottom: 1px solid #f0f0f0;
}
.sub_product_view .name{
  font-size:.9rem;
}
.sub_product_view .value{
  font-size:.9rem;
}
.sub_product_view .contents_tt{
  display: inline-block;
  padding: .5rem 3rem;
  margin-top: 5rem;
  color: #fff;
  background: #222;
}
.sub_product_view .contents{
  padding: 2rem 0;
  margin: 0;
  border-top: 2px solid #222;
}
.sub_product_view .bt{
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;  
  justify-content: space-between;
  gap : 0 .5rem;
}
.sub_product_view .bt>div{
  width: 50%;
  padding: 0;
  margin: 0;
}
.bt_order {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  margin: auto;
  font-family: 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: var(--bs-blue);
  border: 1px solid var(--bs-blue);
  border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
		-moz-appearance: none;
					appearance: none;
}
.bt_order:focus,
.bt_order:hover{
	color: #fff;
  background-color: var(--bs-dark);
	border-color: var(--bs-dark);
	outline: 0;
	box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}
.bt_counsel {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  margin: auto;
  font-family: 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
		-moz-appearance: none;
					appearance: none;
}
.bt_counsel:focus,
.bt_counsel:hover{
  background-color: #fff;
  border: 1px solid #696969;
	outline: 0;
	box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 767.98px) {
  .sub_product_view .item_box{
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem 0;
  }
  .sub_product_view .item_box>div{
    width: 100%;
  }
  .sub_product_view .subject{
    font-size: 1.5rem;
    font-weight: 500;
  }
  .sub_product_view .summary{
    padding: .2rem 0;
  }
  .sub_product_view .bt{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid var(--bs-blue);
    padding: .5rem;
    margin: 0;
    z-index: 2000
  }
  .bt_order, .bt_counsel {
    font-size: .9rem;
    padding: .7rem .5rem;
  }
  .sub_product_view .contents_tt{
    /* width: 100%;
    text-align: center; */
    margin-top: 2rem;
  }
  .sub_product_view .contents{
    padding: 0;
  }
}