@charset "utf-8";


/*------------------------------------------------
product
------------------------------------------------*/

.explanation {
  color: #fff;
  padding: 15px;
  text-align: center;
  background-color: var(--bg-dark);
  font-weight: 700;
  line-height: 1.2;
}

.product {
  padding: var(--header-size-sp) 0 50px;
  border-top:1px solid #ccc;
}

.product-intro {
  padding: 10px 15px 60px;
}
.product-intro-title {
  font-size: 1.6rem;
  line-height: 1;
}
.product-intro-pic {
  padding: 20px 0 10px;
}
.product-intro-text {
}

.product-list {}
.product-item {
  padding: 15px;
}

.product-item:nth-of-type(odd) {
  background-color: var(--accent-color);
}

.product-inner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.product-item-link {
  width: 20%;
}
.product-item-link.pdf-icon {
  position: relative;
}
.product-item-link.pdf-icon::before {
  color: #fff;
  content: "PDF";
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 46px;
  height: 18px;
  background-color: #FF903E;
  border-radius: 2px;
  top: -50px;
  left: 0;
  position: absolute;
}
.product-item-link-button {
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.product-item-link-button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.25s 0s ease;
}
.product-item-link-button:hover::after {
  width: 100%;
  transition: all 0.25s 0s ease;
}

.product-item-detail {
  width: 78%;
}
.product-item-detail-text {
  line-height: 1.2;
}

.product-item-text {}

@media print, screen and (min-width: 960px) {

  .explanation {
    font-size: 2.5rem;
  }

  .product {
    padding: var(--header-size-pc) 0 70px;
    border-top:1px solid #ccc;
  }

  .product-intro {
    padding: 0 20px 70px;
  }
  .product-intro-title {
    font-size: 2.5rem;
  }

  .product-intro-text {
    font-size: 2rem;
  }

  .product-item {
    padding: 20px;
  }
  .product-inner-list {
    align-items: center;
  }
  .product-item-link {
    width: 200px;
  }
  .product-item-link-button {
    font-size: 2rem;
  }
  .product-item-link-button::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: all 0.25s 0s ease;
  }
  .product-item-link-button:hover::after {
    width: 100%;
    transition: all 0.25s 0s ease;
  }

  .product-item-detail {
    width: calc(100% - 210px);
  }
  .product-item-detail-text {
    font-size: 2rem;
  }

  .product-item-text {
    font-size: 2rem;
  }

}

@media print, screen and (min-width: 1200px) {
  .product-intro {
      padding: 0 0 70px;
  }
}


/*切断・加工の種類*/
#cutting-processing.product {
  border-top: none;
}

.cutting-processing {
  padding: 15px;
}

.cutting-processing-box {
  border: 1px solid #ccc;
}

.cutting-processing-box:not(:last-of-type) {
  margin-bottom: 25px;
}

.cutting-processing-title {
  width: 100%;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  background-color: var(--bg-dark);
}

.cutting-processing-list {
  padding: 15px;
}

.cutting-processing-item {
  font-size: 1.8rem;
  line-height: 2;
}

@media print, screen and (min-width: 960px) {
  .cutting-processing {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
  }
  .cutting-processing-box {
    width: calc(50% - 30px);
  }
  .cutting-processing-box:not(:last-of-type) {
    margin-bottom: 0;
  }
  .cutting-processing-title {
    font-size: 3rem;
  }
  .cutting-processing-list {
    padding:30px;
  }
  .cutting-processing-item {
    font-size: 2.8rem;
    line-height: 1.8;
  }
}
