.buy-check{
  margin:2.4rem 0 3rem;
  padding:1.4rem;
  border-radius:8px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.94),rgba(250,248,243,.9)),
    radial-gradient(circle at 100% 0,rgba(96,197,213,.16),transparent 34%);
  border:1px solid rgba(24,36,43,.1);
  box-shadow:0 18px 46px rgba(24,36,43,.1);
}
.buy-check-head{
  display:grid;
  gap:.35rem;
  margin-bottom:1rem;
}
.buy-check-head small{
  font-family:'Nunito','Noto Sans JP',sans-serif;
  color:#c96a3a;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.buy-check-head h2{
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  color:#20201e;
  font-family:'Shippori Mincho','Noto Sans JP',serif;
  font-size:clamp(1.35rem,2.2vw,1.85rem) !important;
  line-height:1.45;
}
.buy-check-head p{
  margin:0 !important;
  color:#69645d !important;
  font-size:.86rem !important;
  line-height:1.8 !important;
}
.buy-check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.85rem;
}
.buy-check-card{
  position:relative;
  min-width:0;
  padding:1rem 1rem 1rem 1.05rem;
  border-radius:8px;
  background:#fff;
  border:1px solid rgba(24,36,43,.08);
}
.buy-check-card::before{
  content:'';
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  border-radius:8px 0 0 8px;
  background:#dfcf98;
}
.buy-check-card.good::before{background:#60c5d5;}
.buy-check-card.caution::before{background:#c96a3a;}
.buy-check-card.confirm::before{background:#dfcf98;}
.buy-check-card.conclusion::before{background:#20201e;}
.buy-check-card h3{
  margin:0 0 .55rem !important;
  color:#20201e !important;
  font-family:'Noto Sans JP',sans-serif !important;
  font-size:.86rem !important;
  font-weight:900 !important;
  line-height:1.45 !important;
}
.buy-check-card ul{
  display:grid;
  gap:.42rem;
  margin:0;
  padding:0;
  list-style:none;
}
.buy-check-card li{
  position:relative;
  margin:0;
  padding-left:1.05rem !important;
  color:#56524c !important;
  font-size:.82rem !important;
  line-height:1.75 !important;
}
.buy-check-card li::before{
  content:'';
  position:absolute;
  left:0;
  top:.72em;
  width:.42rem;
  height:.42rem;
  border-radius:50%;
  background:#c96a3a;
}
.buy-check-card.good li::before{background:#60c5d5;}
.buy-check-card.confirm li::before{background:#b9a25c;}
.buy-check-card.conclusion li::before{background:#20201e;}
@media(max-width:760px){
  .buy-check{
    padding:1.05rem;
    margin:2rem 0 2.4rem;
  }
  .buy-check-grid{
    grid-template-columns:1fr;
  }
  .buy-check-card{
    padding:.95rem .95rem .95rem 1rem;
  }
}
