@charset "utf-8";


.product{
  margin-bottom:10rem;
}

.product-item{
  max-width:1040px;
  margin:0 auto 10rem;
}

.product-title{
  justify-content: space-between;
  display: flex;
  margin: 2.5rem 0 4rem;
}

.product-title h3{
  color:#175534;
  font-size:clamp(1.25rem, 0.5rem + 2.5vw, 3.5rem);
  width:40%;
}

.product-title div{
  width:55%;
}

.product-title h4{
  font-size:clamp(1.125rem, 1rem + 0.42vw, 1.5rem);
  margin-bottom:1rem;
}

.product-item > h4{
  margin:2.5rem 0;
  padding-bottom:8px;
  border-bottom:0.5px solid #808080;
  font-size:clamp(1.25rem, 1.083rem + 0.56vw, 1.75rem);
  position:relative;
}

.product-item > h4::before{
  content:"";
  position:absolute;
  width:180px;
  height:1px;
  background:#175534;
  left:0;
  bottom:-1px;
}

.product-list{
  display:flex;
  flex-wrap:wrap;
  gap:1rem ;
}

.product-list p{
  width:calc((100% - 1rem ) / 2 );
  padding:0 0 0 1rem;
  position:relative;
  font-size:clamp(0.875rem, 0.792rem + 0.28vw, 1.125rem);
}

.product-list p::before{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background:url( https://pillowtec.co.jp/system_panel/uploads/images/20260424154706715852.png) no-repeat center/contain;
}

.oem{
  margin:10rem 0 180px;
}

.oem-item{
  margin-top:10rem;
}

.oem-item h3{
  color:#175534;
  font-size:clamp(1.125rem, 0.917rem + 0.69vw, 1.75rem);
  margin-bottom:5rem;
  display:flex;
  align-items:center;
  gap:8px;
}

.oem-item h3::before{
  content:"";
  display:block;
  background:#175534;
  width:1rem;
  height:1px;
}

.oem-wrap{
  max-width:896px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:5rem 5%;
}

.oem-box{
  width:30%;
  text-align:center;
  font-size:14px;
}

.oem-box img{
  max-width:170px;
  margin:0 auto;
}

.oem-box h4{
  font-size:clamp(1.125rem, 1rem + 0.42vw, 1.5rem);
  margin:1.5rem 0 0.5rem;
}

.flow.oem-item h3{
  margin-bottom:2rem;
}

.flow.oem-item h3 + p{
  margin:0 0 3rem 1rem;
}

.flow-wrap{
  max-width:750px;
  margin:0 auto;
}

.flow-item{
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom:5rem;
  position:relative;
}

.flow-item::before{
  content:"";
  position:absolute;
  width:0.5px;
  height:3.5rem;
  background:#175534;
  left:7%;
  bottom:-4.25rem;
}

.flow-item:last-child{
  margin:0;
}

.flow-item:last-child::before{
  display:none;
}

.flow-item img{
  width:14%;
}

.flow-item div{
  width:81%;
}

.flow-item h4{
  font-size:clamp(1.125rem, 1rem + 0.42vw, 1.5rem);
  color:#175534;
  margin-bottom:0.5rem;
}

.faq{
  max-width:980px;
  margin:0 auto;
}


.accordion {
  border-top: 0.5px solid #175534;
  padding:2.5rem 0;
}

.accordion:last-child {
  border-bottom: 0.5px solid #175534;
}

.accordion p{
  line-height:2;
}

.accordion-header {
  padding: 0 2.5rem;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  color:#175534;
  font-size:clamp(1rem, 0.917rem + 0.28vw, 1.25rem);
}

.accordion-content {
  display: none;
  padding: 2rem 2.5rem 0;
  color:#3B3B3B;
}

.gjs-dashed .accordion-content {
  display:block;
}

.accordion-header::before, .accordion-header::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 1px;
  margin: auto;
  background: #175534;
}


.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}


.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-header p{
  position:relative;  
}


.accordion-header p::before{
  position:absolute;
  content:"Q.";
  left:-2rem;
  top:0;
  font-size:clamp(1rem, 0.917rem + 0.28vw, 1.25rem);
}


@media screen and (max-width: 1280px) {

}

@media screen and (max-width: 1024px) {
  .product-title{
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-title div {
    width: 100%;
  }
  .product-title h3{
    width: 100%;
  }
  .product-list p {
    width: 100%;
  }
  .oem-box img {
    max-width: 130px;
  }
  .oem-box {
    width: 47.5%;
  }
  .oem-wrap{
    gap: 3rem 5%;
  }
}


@media screen and (max-width: 767px) {
  .product-item{
    margin: 0 auto 5rem;
  }
  .product-title{
    gap: 1rem;
    margin: 1.5rem 0 2rem;
  }
  .product-item > h4{
    font-size:18px;
    margin: 2rem 0;
  }
  .product-item > h4::before{
    width: 100px;
  }
  .oem {
    margin: 5rem 0;
  }
  .oem-item {
    margin-top: 2rem;
  }
  .oem-box {
    width: 100%;
  }
  .oem-wrap {
    gap: 2rem 5%;
    max-width: 250px;
  }
  .oem-item h3{
    margin-bottom: 2rem;
  }
  .oem-box h4{
    margin: 1rem 0 0.5rem; 
  }
  .flow-item{
    margin-bottom: 3rem;
  }
  .flow-item img {
    width: 20%;
  }
  .flow-item div {
    width: 75%;
  }
  .flow-item::before{
    display:none;
  }
  .accordion{
    padding: 1.5rem 0;
  }
}