/* 料金例共通CSS：index.php・各商品登録代行ページ共通 */
.lshort-price-example {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background: linear-gradient(135deg, #f2f8ff 0%, #ffffff 52%, #fff4e8 100%);
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

.lshort-price-example::before {
  content: "PRICE";
  position: absolute;
  right: -34px;
  top: 20px;
  color: rgba(0,75,147,.055);
  font-size: min(11vw, 140px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.lshort-price-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.lshort-section-en {
  margin: 0 0 8px;
  color: #ff6b00;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.lshort-section-title {
  margin: 0 0 14px;
  color: #111;
  text-align: center;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.04em;
}

.lshort-section-lead {
  width: min(880px, 100%);
  margin: 0 auto 36px;
  color: #444;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}

.lshort-price-block {
  margin-top: 28px;
}

.lshort-price-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px 24px;
  border-radius: 18px;
  background: #004b93;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,75,147,.18);
}

.lshort-price-block__head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  font-weight: 900;
}

.lshort-price-block__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ff6b00;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.lshort-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lshort-price-grid--migration {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lshort-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 22px 24px;
  border: 1px solid #dbe8f5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 45, 90, .08);
  overflow: hidden;
}

.lshort-price-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 107, 0, .10);
}

.lshort-price-card--featured {
  border-color: #ffb36a;
  box-shadow: 0 20px 54px rgba(255, 107, 0, .14);
}

.lshort-price-card__badge {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff4e8;
  color: #d36800;
  font-size: 12px;
  font-weight: 900;
}

.lshort-price-card h4 {
  position: relative;
  margin: 0 0 16px;
  color: #111;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.lshort-price-formula {
  position: relative;
  margin: 0 0 14px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #f5f9ff;
  color: #004b93;
  text-align: center;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
  font-weight: 900;
  overflow: visible;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lshort-price-formula strong {
  display: block;
  margin-top: 8px;
  color: #ff5a22;
  font-size: clamp(26px, 2.45vw, 32px);
  line-height: 1.18;
  letter-spacing: -.04em;
  font-weight: 900;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lshort-price-note {
  position: relative;
  margin: auto 0 0;
  color: #555;
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 700;
}

.lshort-price-note strong {
  color: #d9001b;
}

.lshort-price-caution {
  margin: 34px 0 0;
  padding: 18px 22px;
  border-left: 6px solid #ff6b00;
  border-radius: 14px;
  background: #fff;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(0,45,90,.06);
}

@media (max-width: 1024px) {
  .lshort-price-grid,
  .lshort-price-grid--migration {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lshort-price-example {
    padding: 56px 0;
  }

  .lshort-price-block__head {
    display: block;
    padding: 18px;
  }

  .lshort-price-block__head span {
    margin-top: 10px;
  }

  .lshort-price-grid,
  .lshort-price-grid--migration {
    grid-template-columns: 1fr;
  }

  .lshort-price-card {
    padding: 24px 18px 22px;
  }

  .lshort-price-formula {
    font-size: 16px;
  }

  .lshort-price-formula strong {
    font-size: 28px;
  }
}


/* 2026-08-29 料金例スマホ調整：青見出し内の補足ラベルはみ出し防止 */
@media (max-width: 640px) {
  .lshort-price-block__head {
    overflow: hidden !important;
    border-radius: 18px !important;
  }

  .lshort-price-block__head span {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
    line-height: 1.55 !important;
    padding: 9px 12px !important;
    margin-top: 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .lshort-price-block__head h3 {
    font-size: 23px !important;
    line-height: 1.45 !important;
  }

  .lshort-price-block__head span {
    font-size: 12.5px !important;
    letter-spacing: -0.02em !important;
  }
}
