
/* 20260202 top 見出しタグ<h1>の設定 */
.scn-top-h1 {
 text-align: center;
 padding: 10px 6px 0px 6px;
}

/* 20260202 top 高価買取のポイントについて */
.scn-p-top-point {
 padding: 60px 16px;
 background: #fff;
}
.scn-p-top-point__list {
 display: grid;
 gap: 16px 2px;
 margin-top: 32px;
}
.scn-p-top-point__item {
 display: flex;
 align-items: center;
}
.scn-p-top-point__item-txt {
 width: 60%;
 font-size: 16px;
 font-weight: bold;
 text-indent: -16px;
 padding-left: 16px;
}
.scn-p-top-point__item-image {
 width: 40%;
 text-align: center;
}
.scn-p-top-point__item-image img {
 width: 100%;
}
@media (width >= 768px) { 
 .scn-p-top-point {
  padding: 120px 20px;
 }
 .scn-p-top-point__list {
  grid-template-columns: repeat(4, 1fr);
 }
 .scn-p-top-point__item {
  flex-direction: column;
 }
 .scn-p-top-point__item-txt {
  width: unset;
  height: 50px;
  font-size: 14px;
  text-indent: -14px;
  padding-left: 14px;
 } 
 .scn-p-top-point__item-image {
  width: unset;
 }
 .scn-p-top-point__item-image img {
  width: 76%;
 }
}