.section-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}
.section-header {
	text-align: center;
	margin-bottom: 80px;
}
.section-header .text {
	font-size: 44px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0px;
}
.product-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  padding: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-card__image {
  align-items: center;
  aspect-ratio: 432 / 300;
  border-radius: 4px;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}
.product-card__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}
.product-card__image .product-card__image_caption {
  font-size: 1.05rem;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__info .copilot_logo img {
  max-width: 240px;
}
.product-card__info h3 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
	text-align: left;
	line-height: 1;
	margin-top: 0.5em;
}
.product-card__info h3 span {
	font-size: 1.2rem;
	font-weight: normal;
	margin-left: 0.35em;
}
.product-card__info p {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 16px;
	text-align: left;
}
.product-card__info p.text-title-3_sub {
	line-height: 1;
	color: #8d8d8d;
}
.product-card__info p.text-body-2 {
	aspect-ratio: 1 / 0.22;
}
.product-card__cta {
  align-self: flex-end;
  white-space: nowrap;
  margin-top: 8px;
  max-width: 100%;
}

.product-card__cta .btn {
	position: relative;
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.product-card__cta .btn.c-ico__arrow::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: min(1.1764705882vw, 16px);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: .5em;
}
.product-card__cta .btn.c-ico__arrow.black--arrow::after {
  background-image: url(/sites/default/files/dynabook-b2b/assets_2025/business/windows11-model-list/assets/arrow-black-bold.svg);
  position: absolute;
  right: min(1.7647058824vw, 24px);
  top: 50%;
  transform: translate(0, -50%);
}
.product-card__cta .btn.c-ico__arrow.white--arrow::after {
  background-image: url(/sites/default/files/dynabook-b2b/assets_2025/business/windows11-model-list/assets/arrow-white-bold.svg);
  position: absolute;
  right: min(1.7647058824vw, 24px);
  top: 50%;
  transform: translate(0, -50%);
}
.product-card__cta .btn.webmodel {
  background-color: #CC4B30;
	color: #fff;
}
.product-card__cta .btn.webmodel:hover {
  opacity: 0.7;
}

/* 白いボタン（詳細はこちら風） */
.product-card__cta .btn.button--campaign-secondary {
  border: 1px solid #999;
  background: #fff;
  color: #333;
}
.product-card__cta .btn.button--campaign-secondary:hover {
  background: #f7f7f7;
}

/* 赤いボタン */
.product-card__cta .btn.button--campaign-primary {
  border: none;
  background: #c9412d;
  color: #fff;
}
.product-card__cta .btn.button--campaign-primary:hover {
  background: #a5301e;
}

.product--container {
	padding: 60px 0;
}


@media screen and (max-width: 1200px) {
  .product-card-container {
		display: grid;
		gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.product-card__cta .btn.c-ico__arrow::after {
		width: min(20px, 24px);
	}
	.product-card__cta .btn.c-ico__arrow.black--arrow::after {
		right: min(10px, 24px);
	}
}

@media screen and (max-width: 576px) {
  .section-header {
		margin-bottom: 40px;
	}
  .product-card-container {
		display: grid;
		gap: 24px;
		grid-template-columns: 1fr;
	}
}