@charset "utf-8";
/* CSS Document */
.product_a{
  position: relative;
  overflow: hidden;
  background: #fff;
}
.product_a .brand{
  color: #91B49F;
}
.product_a .product_list{
  max-width: 1280px;
  margin: 0 auto;
}

.product_a .product_item{
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.product_a .product_item:not(:last-child){
  margin-bottom: clamp(60px, 8vw, 110px);
}

.product_a .imgbox{
  width: 100%;
  aspect-ratio: 1.2 / 0.95;
  overflow: hidden;
}

.product_a .imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product_a .brand{
  margin-bottom: 10px;
  letter-spacing: .08em;
font-weight: 400;
}

.product_a h2{
  margin-bottom: 26px;
  letter-spacing: .08em;
}

.product_a .sub{
  margin-bottom: 26px;
  font-weight: 500;
  letter-spacing: .06em;
}

.product_a .txtbox > p:last-child{
  letter-spacing: .05em;
}

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

  .product_a .product_item{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product_a .imgbox{
    aspect-ratio: 1.2 / 0.9;
  }

}

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

  .product_a .product_item:not(:last-child){
    margin-bottom: 70px;
  }

  .product_a h2{
    margin-bottom: 18px;
  }

  .product_a .sub{
    margin-bottom: 18px;
  }

}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

