@charset "UTF-8";
#products {
  margin: 0 auto 160px;
}
.intro_wrap {
  width: 47%;
  max-width: 675px;
  margin: 0 auto 80px;
}

/* デザコン、シールドウォール */
.product_inner {
  display: flex;
  width: 86%;
  margin: 0 auto;
  max-width: 1238px;
  gap: 4.5%;
}
.product_pic,
.product_desc {
  width: 50%;
}
.product_name {
  margin-bottom: 40px;
  margin-top: 10px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2rem;
  line-height: 0;
}
.dezacon_logo {
  width: 138px;
}
.shield-wall_logo {
  width: 230px;
  padding-top: 20px;
  vertical-align: bottom;
}
.dezacon_logo img,
.shield-wall_logo img {
  width: 100%;
}
.product_desc {
  display: flex;
  flex-direction: column;
}
.product_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: auto;
}

#dezacon,
#shield-wall {
  margin-bottom: 200px;
}
/* View More ボタン */
.button {
  margin-top: 10px;
}
.btn {
  position: relative;
  box-sizing: border-box;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 15px 30px;
  background-color: #519987;
  color: #f6f6f1;
}

.btn:before {
  position: absolute;
  inset: -4px 4px 4px -4px;
  border: 1px solid #eaeaea;
  content: "";
}
/* 矢印 */
.arrow {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 24px;
  height: 2px;
  padding-left: 10px;
  border-radius: 9999px;
  background-color: #f6f6f1;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #f6f6f1;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}

@media (max-width: 1150px) {
  #products {
    margin-bottom: 80px;
  }
  .intro_wrap {
    width: 80%;
  }

  #dezacon,
  #shield-wall {
    margin-bottom: 120px;
  }

  .product_inner {
    width: 80%;
    display: grid;
    grid-template-areas:
      "name"
      "text"
      "pic"
      "cta";
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product_pic {
    width: 100%;
    grid-area: pic;
  }
  .product_desc {
    width: 100%;
    display: contents;
  }
  .product_name {
    grid-area: name;
    margin-bottom: 0;
  }
  .product_text {
    grid-area: text;
  }
  .product_cta {
    grid-area: cta;
    justify-content: center;
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .intro_wrap {
    width: 90%;
  }

  /* 共通*/
  .product_inner {
    width: 90%;
  }
  .product_cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }
  #dezacon {
    margin-bottom: 100px;
  }
	
  #shield-wall {
    margin: 100px 0 50px;
  }
}
