.unitTitle {
  display: flex;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: clamp(30px, 10%, 60px);
}
@media screen and (max-width: 1000px) {
  .unitTitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .unitTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .unitTitle {
    font-size: 1.625rem;
  }
}
.unitTitle::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50% 50%;
  border: 6px solid #C61D06;
  filter: drop-shadow(18px 0 0px #C61D06);
  margin: 15px 40px 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .unitTitle::before {
    margin: 10px 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .unitTitle::before {
    margin: 7px 40px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .unitTitle::before {
    margin: 5px 40px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .productsList section .listBox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.productsList section .item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .productsList section .item {
    flex-direction: column;
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .productsList section .item {
    width: 100%;
  }
}
.productsList section .pic {
  border: #EEEEEE 1px solid;
  width: 50%;
  margin-bottom: 50px;
  box-shadow: -20px 20px 40px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .productsList section .pic {
    width: 100%;
  }
}
.productsList section .info {
  width: 50%;
  margin: 5% 0 0 auto;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .productsList section .info {
    width: 100%;
    margin: 0 0 30px;
  }
}
.productsList section .info .title {
  font-weight: 700;
  font-size: 3rem;
  padding: 15px 0;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .productsList section .info .title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .productsList section .info .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .productsList section .info .title {
    font-size: 1.5rem;
  }
}
.productsList section .info .description {
  color: #140A07;
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0 50px 20px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .productsList section .info .description {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .productsList section .info .description {
    font-size: 1rem;
  }
}
.productsList section .info .more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #C61D06;
  text-decoration: underline;
  line-height: 1;
}

.productsList2 .mainBox {
  padding-bottom: 0;
}
.productsList2 .mainBox .listBox {
  --gap: 70px;
  padding-bottom: clamp(30px, 10%, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media screen and (max-width: 1000px) {
  .productsList2 .mainBox .listBox {
    --gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .productsList2 .mainBox .listBox {
    --gap: 20px;
  }
}
.productsList2 .mainBox .listBox a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow:hidden;
}
.productsList2 .mainBox .listBox a .info {
  flex-grow: 1;
  padding: 20px;
  position:relative;
}
.productsList2 .mainBox .listBox a .info:after{
  position: absolute;
  left:-100%;
  bottom:0;
  width:100%;
  height:2px;
  content:"";
  background-color:#C61D06;
  transition: all 0.3s linear;
}
.productsList2 .mainBox .listBox a .info .title {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.1;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1000px) {
  .productsList2 .mainBox .listBox a .info .title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .productsList2 .mainBox .listBox a .info .title {
    font-size: 1.25rem;
  }
}
.productsList2 .mainBox .listBox a:hover .info:after{
  left:0;
}
.productsList2 .mainBox .listBox a:hover .info .title{
  color:#C61D06;
}
.productsList2 .mainBox .listBox .item {
  transition: all 0.3s ease;
}
@media screen and (min-width: 576px) {
  .productsList2 .mainBox .listBox .item {
    width: calc((100% - var(--gap)) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .productsList2 .mainBox .listBox .item {
    width: calc((100% - (var(--gap) * 2)) / 3);
  }
}
.productsList2 .mainBox .editor {
  color: #130A06;
  font-size: 1.125rem;
  padding: clamp(30px, 10%, 100px) 0;
  background: white;
}
@media screen and (max-width: 767px) {
  .productsList2 .mainBox .editor {
    font-size: 1rem;
  }
}

.productsList3 .mainBox {
  padding-bottom: 0;
}
.productsList3 .mainBox .listBox {
  --gap: 70px;
  padding-bottom: clamp(30px, 10%, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media screen and (max-width: 1000px) {
  .productsList3 .mainBox .listBox {
    --gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .productsList3 .mainBox .listBox {
    --gap: 20px;
  }
}
.productsList3 .mainBox .listBox .item {
  transition: all 0.3s ease;
}
@media screen and (min-width: 576px) {
  .productsList3 .mainBox .listBox .item {
    width: calc((100% - var(--gap)) / 2);
  }
}
.productsList3 .mainBox .listBox .item .pic {
  transition: all 0.3s ease;
}
.productsList3 .mainBox .listBox .item .title {
  color: #000;
  font-size: 1.75rem;
  text-align: center;
  padding: 20px;
  line-height: 1.1;
}
@media screen and (max-width: 1000px) {
  .productsList3 .mainBox .listBox .item .title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .productsList3 .mainBox .listBox .item .title {
    font-size: 1.25rem;
  }
}
.productsList3 .mainBox .listBox .item:hover .pic {
  box-shadow: 0 0 10px 0 rgba(198, 29, 6, 0.8);
}
.productsList3 .mainBox .editor {
  color: #130A06;
  font-size: 1.125rem;
  padding: clamp(30px, 10%, 100px) 0;
  background: white;
}
@media screen and (max-width: 767px) {
  .productsList3 .mainBox .editor {
    font-size: 1rem;
  }
}

.productsDetail .mainBox {
  background: #FFF;
  padding-bottom: 0;
}
.productsDetail .unitTitle {
  font-size: 3.7rem;
}
@media screen and (max-width: 1000px) {
  .productsDetail .unitTitle {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .productsDetail .unitTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .productsDetail .unitTitle {
    font-size: 1.625rem;
  }
}
.productsDetail .subTitle {
  color: #C61D06;
  margin-bottom: clamp(15px, 5%, 35px);
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 1000px) {
  .productsDetail .subTitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .productsDetail .subTitle {
    font-size: 1.25rem;
  }
}
.productsDetail .topBox {
  padding-bottom: clamp(50px, 10%, 130px);
}
.productsDetail .topBox .container {
  max-width: 1775px;
  padding-right: 0;
  margin: 0 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .productsDetail .topBox .container {
    flex-direction: column;
  }
}
@media screen and (min-width: 1440px) {
  .productsDetail .topBox .editor {
    width: 32%;
  }
}
@media screen and (min-width: 768px) {
  .productsDetail .topBox .editor {
    width: 50%;
  }
}
.productsDetail .topBox .description {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .productsDetail .topBox .description {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .productsDetail .topBox .pic {
    width: calc(68% - 40px);
  }
}
@media screen and (min-width: 768px) {
  .productsDetail .topBox .pic {
    width: calc(50% - 40px);
    position: sticky;
    top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .productsDetail .topBox .pic {
    order: -1;
  }
}
.productsDetail .bottomBox {
  padding-top: clamp(50px, 5%, 80px);
  padding-bottom: clamp(60px, 6%, 90px);
  background: #F2F2F2;
}
.productsDetail .bottomBox .top {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .productsDetail .bottomBox .top {
    flex-direction: column;
  }
}
.productsDetail .bottomBox .top .subTitle {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .productsDetail .bottomBox .top .box + .box {
    margin-top: clamp(30px, 10%, 64px);
  }
}
@media screen and (max-width: 767px) {
  .productsDetail .bottomBox .top .box {
    margin-bottom: clamp(30px, 10%, 64px);
  }
}
@media screen and (min-width: 768px) {
  .productsDetail .bottomBox .top .editor {
    width: 50%;
  }
}
.productsDetail .bottomBox .top .editor .description ul {
  list-style: disc;
  padding-left: 20px;
}
.productsDetail .bottomBox .top .editor .box .description{
  font-size:18px;
}
.productsDetail .bottomBox .top table {
  width: 100%;
}
.productsDetail .bottomBox .top table th,
.productsDetail .bottomBox .top table td {
  padding: 25px;
  border: #E5E5E5 1px solid;
  line-height: 1.2;
}
.productsDetail .bottomBox .top table th {
  width: 45%;
  text-align: left;
  background: #C61D06;
  color: #FFF;
}
.productsDetail .bottomBox .top table td {
  width: 55%;
  background: #FFF;
}
.productsDetail .bottomBox .bottom {
  padding-top: clamp(30px, 5%, 80px);
  margin-top: clamp(30px, 5%, 80px);
  border-top: #E0E0E0 2px solid;
}
.productsDetail .bottomBox .bottom .picBox {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .productsDetail .bottomBox .bottom .picBox {
    flex-direction: column;
  }
}
.productsDetail .bottomBox .bottom .picBox img {
  max-height: 265px;
}/*# sourceMappingURL=products.css.map */