#loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3; /* Couleur de fond */
  border-top: 5px solid #3498db; /* Couleur de l'anneau en rotation */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



#model .model04 {
  margin: 0 auto 40px;
}
@media only screen and (max-width: 768px) {
  #model .model04 {
    margin: 0 auto 30px;
  }
}
@media print, screen and (min-width: 769px) {
  #model .model04 .commonBtn {
    display: none;
  }
}
#model .model04 .product_cat_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#model .model04 .product_cat_list .product_list {
  border: 1px solid #ddd;
  padding: 20px;
}
@media print, screen and (min-width: 769px) {
  #model .model04 .product_cat_list .product_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
  }
}
#model .model04 .product_cat_list .product_list.hide {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list .product_list.hide {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list .product_list.hide.active {
    display: block;
  }
}
@media print, screen and (min-width: 769px) {
  #model .model04 .product_cat_list .product_list .img_con {
    width: 32%;
  }
}
#model .model04 .product_cat_list .product_list .img_con .product_image {
  margin-bottom: 20px;
}
#model .model04 .product_cat_list .product_list .img_con .product_image img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 769px) {
  #model .model04 .product_cat_list .product_list .text_con {
    width: 66%;
  }
}
#model .model04 .product_cat_list .product_list .text_con h3 {
  font-weight: 400;
  position: relative;
  padding-right: 20px;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list .product_list .text_con h3 {
    margin: 20px 0 10px;
  }
}
#model .model04 .product_cat_list .product_list .text_con h3:before {
  position: absolute;
  content: "";
  background: url(../images/common/pdf.svg) no-repeat center right/contain;
  width: 16px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
}
#model .model04 .product_cat_list .product_list .text_con .detail_list_ttl {
  color: #0066B5;
  padding: 8px 30px 2px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
#model .model04 .product_cat_list .product_list .text_con .detail_list_ttl.on {
  border-radius: 5px 5px 0 0;
}
#model .model04 .product_cat_list .product_list .text_con .detail_list_ttl.on:before {
  top: 50%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#model .model04 .product_cat_list .product_list .text_con .detail_list_ttl:before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: #0066b5;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 12px;
}
#model .model04 .product_cat_list .product_list .text_con ul {
  padding: 8px 16px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 200px;
}
#model .model04 .product_cat_list .product_list .text_con ul li {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list .product_list .text_con ul li {
    font-size: 3.077vw;
  }
}
#model .model04 .product_cat_list .product_list .text_con ul li:first-child {
  font-weight: bold;
}
#model .model04 .product_cat_list .product_list .tag_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
#model .model04 .product_cat_list .product_list .tag {
  display: inline-block;
  padding: 7px 10px 3px;
  border-radius: 50px;
  text-align: center;
  min-width: 110px;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  #model .model04 .product_cat_list .product_list .tag {
    font-size: 3.077vw;
  }
}
#model .model04 .product_cat_list .product_list .tag.tag_blue {
  background: #bde4fd;
  color: #0066B5;
  border: 1px solid #bde4fd;
  width: calc((100% - 10px) / 2);
}
#model .model04 .product_cat_list .product_list .tag.tag_w {
  background: #fff;
  color: #0066B5;
  border: 1px solid #0066B5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
#model .model04 .product_cat_list .product_list .tag.tag_w.mini {
  width: calc((100% - 10px) / 2);
}

#model .model02 .sec_inner dl.model_list dd .tag_list li a.selected {
  background: #bde4fd;
}
.breadcrumbs {
  gap: 0 5px;
}
.breadcrumbs .home, .breadcrumbs span {
  color: #0066B5;
}