/* 料金例共通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;
  }
}

/* Amazon料金例専用：共通料金例CSSの拡張 */
.lshort-price-example--amazon .lshort-price-grid--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.lshort-price-example--amazon .lshort-price-grid--amazon-new {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lshort-price-example--amazon .lshort-price-card--example {
  border-color: #dbe8f5;
  background: #fff;
}

.lshort-price-example--amazon .lshort-price-example-text {
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.lshort-price-example--amazon .lshort-price-caution ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.lshort-price-example--amazon .lshort-price-caution li {
  margin: 6px 0;
}

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

@media (max-width: 640px) {
  .lshort-price-example--amazon .lshort-price-grid--single,
  .lshort-price-example--amazon .lshort-price-grid--amazon-new {
    grid-template-columns: 1fr;
  }
}


.lshort-price-example--amazon .lshort-price-card--amazon-summary {
  width: 100%;
  max-width: none;
  margin: 0;
}

.lshort-price-example--amazon .lshort-price-card--amazon-summary {
  padding: 32px 28px 28px;
}

.lshort-price-example--amazon .lshort-amazon-price-summary {
  margin-top: 24px;
  border: 1px solid #dbe8f5;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.lshort-price-example--amazon .lshort-amazon-price-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(220px, 1fr) minmax(220px, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: #f8fbff;
}

.lshort-price-example--amazon .lshort-amazon-price-row + .lshort-amazon-price-row {
  border-top: 1px solid #dbe8f5;
}

.lshort-price-example--amazon .lshort-amazon-price-row:nth-child(even) {
  background: #f3f7fb;
}

.lshort-price-example--amazon .lshort-amazon-price-row__label {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
  color: #0a4f9c;
}

.lshort-price-example--amazon .lshort-amazon-price-row__value {
  margin: 0;
  color: #ff5a1f;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.lshort-price-example--amazon .lshort-amazon-price-row__value span {
  font-size: 17px;
  color: #ff5a1f;
  font-weight: 800;
}

.lshort-price-example--amazon .lshort-amazon-price-row__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  color: #555;
}

@media (max-width: 900px) {
  .lshort-price-example--amazon .lshort-amazon-price-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 18px;
  }

  .lshort-price-example--amazon .lshort-amazon-price-row__value {
    font-size: 30px;
  }
}


@media (max-width: 640px) {
  .lshort-price-example--amazon .lshort-price-card--amazon-summary {
    padding: 24px 18px 22px;
  }
}

/* Amazon料金例：青いタイトルバーを1つにまとめた最終調整 */
.lshort-price-example--amazon .lshort-price-block--amazon-unified {
  max-width: none;
}

.lshort-price-example--amazon .lshort-amazon-unified-card {
  width: 100%;
  padding: 30px 28px;
  border: 1px solid #dbe8f5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 45, 90, .08);
  box-sizing: border-box;
}

.lshort-price-example--amazon .lshort-amazon-unified-section + .lshort-amazon-unified-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px solid #edf4fb;
}

.lshort-price-example--amazon .lshort-amazon-unified-section h4 {
  margin: 0 0 8px;
  color: #111;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-unified-lead {
  margin: 0 0 16px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.lshort-price-example--amazon .lshort-amazon-price-row--pickup {
  border: 1px solid #dbe8f5;
  border-radius: 18px;
  background: #f8fbff;
}

.lshort-price-example--amazon .lshort-amazon-unified-example {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff7ef;
  border: 1px solid #ffd5b0;
}

.lshort-price-example--amazon .lshort-amazon-unified-example span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-unified-example p {
  margin: 0 0 8px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.lshort-price-example--amazon .lshort-amazon-unified-example strong {
  display: block;
  color: #ff5a1f;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  font-weight: 900;
}

@media (max-width: 640px) {
  .lshort-price-example--amazon .lshort-amazon-unified-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .lshort-price-example--amazon .lshort-amazon-unified-section h4 {
    font-size: 19px;
  }

  .lshort-price-example--amazon .lshort-amazon-unified-example {
    padding: 18px 16px;
  }
}

/* Amazon料金例：青タイトルの重複感を抑える調整 */
.lshort-price-example--amazon .lshort-price-block__head--amazon-simple h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.lshort-price-example--amazon .lshort-price-block__head--amazon-simple span {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
}

/* ▼ここから追加：料金の見せ方リニューアル（2026-09-03） */

.lshort-price-example--amazon .lshort-amazon-pattern-select {
  margin: 0 0 40px;
}

.lshort-price-example--amazon .lshort-amazon-pattern-select__title {
  margin: 0 0 18px;
  color: #111;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid #dbe8f5;
  border-top: 6px solid #004b93;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 45, 90, .08);
}

.lshort-price-example--amazon .lshort-amazon-pattern-card--new {
  border-top-color: #ff6b00;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f5f9ff;
  color: #004b93;
  font-size: 12px;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card--new .lshort-amazon-pattern-card__tag {
  background: #fff4e8;
  color: #d36800;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card h4 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card__desc {
  margin: 0 0 18px;
  color: #555;
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 700;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card__price {
  margin: 0 0 10px;
  color: #ff5a1f;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.3;
  font-weight: 900;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card__price span {
  margin-left: 6px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 800;
}

.lshort-price-example--amazon .lshort-amazon-pattern-card__note {
  margin: 0;
  color: #666;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 700;
}

.lshort-price-example--amazon .lshort-amazon-unified-example--top {
  margin-top: 0;
  margin-bottom: 24px;
}

.lshort-price-example--amazon .lshort-amazon-breakdown-title {
  margin: 0 0 12px;
  color: #0a4f9c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

@media (max-width: 640px) {
  .lshort-price-example--amazon .lshort-amazon-pattern-grid {
    grid-template-columns: 1fr;
  }
}
/* ▲追加ここまで */
