  .lp_box {
    box-sizing: border-box;
    width: 95%;
    margin: 1.5em auto;
    padding: 1.2em;
    border: 1px solid #c9e5f8;
    border-radius: 10px;
    background: #f7fcff;
  }
  .lp_box_white {
    box-sizing: border-box;
    width: 95%;
    margin: 1.5em auto;
    padding: 1.2em;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
  }
  .lp_lead {
    font-size: 1.05em;
    line-height: 1.9;
  }
  .lp_point_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6em;
    margin: 1em 0;
    padding: 0;
    list-style: none;
  }
  .lp_point_list li {
    padding: .7em .8em;
    border-left: 5px solid #1e88d1;
    background: #fff;
    font-weight: bold;
  }
  .lp_cta_area {
    width: 95%;
    margin: 1.5em auto;
    padding: 1.2em;
    border-radius: 12px;
    background: #fff7e6;
    border: 2px solid #ffb84d;
    text-align: center;
  }
  .lp_cta_main,
  .lp_cta_sub {
    display: inline-block;
    box-sizing: border-box;
    width: min(100%, 360px);
    margin: .35em;
    padding: .9em 1em;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    line-height: 1.5;
  }
  .lp_cta_main {
    color: #fff;
    background: #e65100;
    box-shadow: 0 3px 0 #a33a00;
  }
  .lp_cta_sub {
    color: #0d47a1;
    background: #fff;
    border: 2px solid #0d47a1;
  }
  .lp_note {
    margin-top: .8em;
    font-size: .92em;
    line-height: 1.7;
  }
  .lp_card_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9em;
    width: 95%;
    margin: 1em auto 1.5em;
  }
  .lp_card {
    padding: 1em;
    border: 1px solid #c9e5f8;
    border-radius: 10px;
    background: #fff;
  }
  .lp_card h3 {
    margin-top: 0;
    color: #0d47a1;
    font-size: 1.05em;
  }
  .lp_table_note {
    width: 95%;
    margin: .8em auto 1.2em;
    font-size: .95em;
    line-height: 1.7;
  }
  .lp_price_table th {
    width: 32%;
    background: #eaf6ff;
  }
  @media screen and (max-width: 640px) {
    .lp_point_list,
    .lp_card_grid {
      grid-template-columns: 1fr;
    }
    .lp_cta_main,
    .lp_cta_sub {
      width: 100%;
      margin: .35em 0;
    }
  }
  /*start*/
  .product-card {
  width: 470px;
  min-height: 105px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 42px 6px 6px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  border: 1px solid #eee;
}

.product-card:hover {
  opacity: 0.85;
}

/* 左の商品画像 */
.product-img {
  width: 93px;
  height: 93px;
  flex-shrink: 0;
  border: 1px solid #35aee2;
  object-fit: cover;
}

/* テキスト部分 */
.product-text {
  flex: 1;
  padding-top: 2px;
}

.product-title {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
}

.product-title .code {
  font-weight: 500;
  margin-right: 4px;
}

.product-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
}

/* 右側のピンク丸 */
.arrow-circle {
  position: absolute;
  right: 40px;
  /* right: -15px; */
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(236, 145, 178, 0.75);
}

/* 矢印 */
.arrow-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* スマホ対応 */
@media (max-width: 520px) {
  /* body {
    padding: 15px;
  } */

  .product-card {
    width: 100%;
    padding-right: 38px;
  }

  .product-title {
    font-size: 16px;
  }

  .product-desc {
    font-size: 12px;
    line-height: 1.7;
  }

  .product-img {
    width: 86px;
    height: 86px;
  }
}