@charset "UTF-8";
.product {
  margin-top: 240px;
}
@media screen and (max-width: 767px) {
  .product {
    margin-top: 80px;
  }
}
.product__list {
  display: flex;
  gap: 80px 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product__list {
    flex-direction: column;
    gap: 56px 0;
  }
}
.product__item {
  width: calc(50% - 40px);
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .product__item {
    width: 100%;
  }
}
.product__link {
  padding-bottom: 80px;
  display: block;
}
@media screen and (max-width: 767px) {
  .product__link {
    padding-bottom: 24px;
  }
}
.product__heading {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #2d2d2d, #2d2d2d); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left 0% bottom 20%;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .product__heading {
    font-size: 28px;
  }
}
.product__description {
  margin-top: 10px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product__description {
    margin-top: 12px;
  }
}
.product__image {
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .product__image {
    margin-top: 24px;
    margin-bottom: 12px;
  }
}
.product__image > img {
  transition: all 0.3s;
}
.product__text {
  margin-top: 20px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product__text {
    margin-top: 12px;
  }
}
.product__btn-box {
  margin-top: 40px;
  text-align: right;
}
.product__btn-box > .btn {
  width: 240px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .product__btn-box > .btn {
    width: 200px;
  }
}