/* ==========================================
送信完了ページ
========================================== */
.thanks h2{
border:none;
background:transparent;
margin-bottom:0;
font-size:1.4rem;
}
.thanks figure{
width:10%;
margin:1rem auto;
}
.thanks p{
text-align:center;
}
.thanks .wrapper{
background:transparent;
border:1.5px solid #eee;
padding:1rem;
width:95%;
margin:2rem auto;
border-radius:8px;
}
.thanks .wrapper h3{
text-align:center;
font-size:1.1rem;
font-weight:500;
margin-bottom:.5rem;
}

/* 関連商品 */
.related-products {
    width: 95%;
	 margin:0 auto;
  padding: 24px 16px 18px;
  background: #f4f4f4;
  border-radius: 8px;
}

.related-products__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.related-products h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #202633;
  text-align:left;
}

.related-products .lead {
  margin: 0 0 24px;
  color: #666;
  text-align:left;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  min-height: 230px;
  padding: 28px 22px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 13px;
  border-radius: 999px;
  background: #e39f35;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}

.badge--recommend {
  background: #49a7b4;
}

.product-card__image {
  text-align: center;
}

.product-card__image img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.product-card__body h3 {
  margin: 0 0 22px;
  font-size: 1.2rem
  font-weight: 700;
  color: #1d2430;
}

.product-card__body p {
  margin: 0 0 24px;
  line-height: 1.8;
  color: #202633;
    text-align:left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 22px;
  background: #bda342;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.btn::after {
  content: "›";
  margin-left: 22px;
  font-size: 1.3rem;
  line-height: 1;
}

.btn:hover {
cursor:pointer;
  color: #fff;
}

.check-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  color: #202633;
  font-size: 1rem;
  font-weight: 700;
}

.check-text::before,
.check-text::after {
  content: "";
  flex: 1;
  max-width: 440px;
  border-top: 4px dotted #cfcfcf;
}

/* タブレット */
@media (max-width: 1024px) {
  .product-list {
    overflow: scroll;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 20px 24px;
    text-align: center;
  }


  .related-products {
    padding: 22px 12px;
  }

  .product-card__image img {
    max-height: 150px;
    margin-bottom: 18px;
  }

  .product-card__body h3 {
    margin-bottom: 12px;
  }

  .product-card__body p {
    margin-bottom: 18px;
  }

  .btn {
    width: 100%;
    max-width: 240px;
  }

  .check-text {
    gap: 10px;
  }

  .check-text::before,
  .check-text::after {
    border-top-width: 3px;
  }
}

@media (max-width: 768px) {
.thanks figure{
width:30%;
}
}