/* ===============================
   LP 共通レイアウト
   =============================== */
:root {
  --lp-color-main: #ee8c1c;
  --lp-color-sub: #bee1aa;
  --lp-color-bg: #ffffff;
  --lp-color-text: #333333;
  --line: #e5e7eb;
  --lp-radius-base: 12px;
  --lp-shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.06);
  --radius:16px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
}

.lp-wrapper {
  background-color: #fff;
}

.lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  box-sizing: border-box;
}

.lp-main {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lp-color-text);
}

/* ===============================
   ヒーローエリア
   =============================== */

.lp-hero {
  /* background: linear-gradient(135deg, #fff7ef, #ffe4c4); */
  position: relative;

  padding: 0;
  box-shadow: var(--lp-shadow-soft);
  margin-bottom: 0;
}
.hero-image{
  background: url(../images/nippou123.png);
  background-repeat: no-repeat;
  background-size:cover;
  background-position: right;
}
.hero-filter{
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.571) 30%, rgba(203, 203, 203, 0.3)70%, rgba(113, 113, 113, 0.084) 100%);
    /* background: rgba(29, 29, 29, 0.3); */
    padding: 5%;
}
@media (max-width: 768px) {
  .hero-filter{
    background: linear-gradient(45deg, rgba(77, 77, 77, 0.571) 30%, rgba(96, 96, 96, 0.3)70%, rgba(115, 115, 115, 0.664) 100%);
    padding: 5%;
  }
}
.lp-hero__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lp-color-main);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
}

.lp-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: #fff;
}

.lp-hero__title {
  font-size: clamp(18px, 2.3vw, 30px);
  line-height: 1.4;
  margin-bottom: 12px;
}

.lp-hero__lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lp-hero__lead strong {
  font-weight: bold;
}

.lp-hero__points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
}

.lp-hero__points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.lp-hero__points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lp-color-main);
  font-size: 11px;
  line-height: 1.8;
}

.lp-hero__cta {
  margin: 0 auto;
  margin-top: 4px;
  display: grid;
  gap: 5%;
}
@media only screen and (min-width: 600px) {
.lp-hero__cta {
  margin: 0 auto;
  margin-top: 4px;
  display: flex;
  gap: 3%;
}
}
.lp-hero__note {
  margin-top: 8px;
  font-size: 12px;
  color: #ffffff;
}

.lp-hero__visual {
  display: flex;
  justify-content: center;
}

.lp-device-mock {
  background: #fff;
  border-radius: 20px;
  padding: 12px 12px 16px;
  box-shadow: var(--lp-shadow-soft);
  max-width: 260px;
  width: 100%;
  text-align: center;
}

.lp-device-mock__frame {
  border-radius: 18px;
  border: 2px solid #ddd;
  padding: 8px;
  background: #fafafa;
}

.lp-device-mock__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.lp-device-mock__caption {
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

/* ===============================
   セクション共通
   =============================== */
.lp-section {
  margin-top: 40px;
}

.lp-section--accent {
  background: #fffaf4;
  border-radius: 16px;
  /* padding: 24px 20px 28px; */
}

.lp-section__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 16px;
  padding-left: 10px;
}

/* ===============================
   グリッド
   =============================== */
.lp-grid {
  display: grid;
  gap: 16px;
}

.lp-grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===============================
   カード
   =============================== */
.lp-card {
  background: #fff;
  border-radius: var(--lp-radius-base);
  padding: 16px 14px;
  box-shadow: var(--lp-shadow-soft);
  font-size: 13px;
  border: var(--lp-color-main) 1px solid;
}

.lp-card--problem {
  border-top: 4px solid var(--lp-color-main);
  background: #fff8f0;
}

.lp-card__title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}

.lp-card__text {
  font-size: 13px;
  line-height: 1.7;
}

/* ===============================
   リスト
   =============================== */
.lp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.7;
}

.lp-list li::before {
  content: "・";
  position: absolute;
  left: 4px;
  top: 0;
}

/* ===============================
   ステップ
   =============================== */
.lp-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-top: 12px;
  display: grid;
  /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
  gap: 16px;
  max-width: 400px;
}

.lp-steps__item {
  background: #fff;
  border-radius: var(--lp-radius-base);
  padding: 14px 12px 16px;
  box-shadow: var(--lp-shadow-soft);
  font-size: 13px;
  max-width: 400px;
}

.lp-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--lp-color-sub);
  margin-bottom: 6px;
}

.lp-steps__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.lp-steps__text {
  font-size: 13px;
  line-height: 1.7;
}

.lp-section__cta {
  margin-top: 16px;
  text-align: center;
  max-width: 250px;
   margin: 0 auto;
}

/* ===============================
  料金ダイジェスト
   =============================== */
.lp-price-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.lp-price-summary__column {
  background: #fff;
  border-radius: var(--lp-radius-base);
  border: 1px solid #ffd0a0;
  padding: 14px 12px 16px;
  font-size: 13px;
}

.lp-price-summary__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}

.lp-price-summary__price {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.lp-price-summary__note {
  font-size: 12px;
  color: #555;
}

.lp-price-summary__footer {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #555;
}

/* ===============================
   FAQ
   =============================== */
.lp-faq {
  display: grid;
  gap: 12px;
}

.lp-faq__item {
  background: #fff;
  border-radius: var(--lp-radius-base);
  padding: 12px 12px 14px;
  border-left: 3px solid var(--lp-color-sub);
  border-right: 3px solid var(--lp-color-sub);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lp-faq__q {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.lp-faq__a {
  font-size: 13px;
  line-height: 1.7;
}

/* ===============================
   CTAボタン
   =============================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--lp-color-main);
  color: #fff0e9 !important;
  box-shadow: 0 4px 10px rgba(238, 140, 28, 0.4);
  max-width: 250px;
  margin: 0 auto;
}

.lp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(238, 140, 28, 0.5);
  opacity: 0.95;
}

.lp-btn--ghost {
  background: #fff;
  color: var(--lp-color-main);
  border: 2px solid var(--lp-color-main);
}

.lp-btn--ghost:hover {
  background: #fff8f0;
}

.lp-btn--outline {
  background: #fff;
  color: var(--lp-color-main);
  border: 1px solid var(--lp-color-main);
}

.lp-btn--lg {
  padding: 12px 22px;
  font-size: 15px;
}

/* ===============================
   最終CTA
   =============================== */
.lp-section--final-cta {
  margin-top: 40px;
}

.lp-final-cta {
  background: linear-gradient(305deg, hsl(36deg 100% 70.3%), #efa700d6);
  border-radius: 18px;
  padding: 24px 18px 28px;
  box-shadow: var(--lp-shadow-soft);
  text-align: center;
}

.lp-final-cta__title {
  color: #fff6f6;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.lp-final-cta__text {
  color: #ffeeee;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lp-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ===============================
   レスポンシブ対応
   =============================== */
@media (max-width: 768px) {
  .lp-container {
    padding: 20px 12px 48px;
  }

  .lp-hero__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero__visual {
    order: -1;
    margin-bottom: 8px;
  }
  .lp-grid--3col,
  .lp-steps,
  .lp-price-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-section {
    margin-top: 32px;
  }

  .lp-final-cta {
    padding: 20px 14px 24px;

  }

  .lp-hero__note {
    font-size: 11px;
  }
}
@media (max-width:500px) {
  .lp-grid--2col{
      grid-template-columns: minmax(0, 1fr);
  }
}
/* 「サクっと日報とは」のブロック全体 */
.lp-definition {
  max-width: 1000px;        /* サイトのmax-widthに合わせる */
  padding: 24px 16px;
  box-sizing: border-box;
  background: #fffdf7;      /* ほんのり背景色 */
  border-radius: 12px;
  font-size: 0.5rem;
}

/* 見出し h2 */
.lp-definition h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

/* 定義文 p */
.lp-definition p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* 小さい画面向け微調整 */
@media (max-width: 768px) {
  .lp-definition {
    margin-top: 24px;
    padding: 16px 12px;
  }

  .lp-definition h2 {
    font-size: 18px;
  }

  .lp-definition p {
    font-size: 13px;
  }
}
/* 画面サンプル一覧 */
.lp-screens__lead {
  margin: 0 auto;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  text-align: left;
}

.lp-screens-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

/* カード全体 */
.lp-screen-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-screen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

/* 画像枠 */
.lp-screen-card__imgwrap {
  border-radius: 10px;
  padding: 10px;
}

.lp-screen-card__imgwrap img {
  width: 80%;
  height: auto;
  border-radius: 8px;
}

/* キャプション */
.lp-screen-card__caption {
  font-size: 13px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

.lp-screen-card__imgwrap-seiban{
    width: 115% !important;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .lp-screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lp-screen-card__imgwrap {
    max-width: 200px;
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
  }
  .lp-screen-card__imgwrap-seiban{
    max-width: 300px;
    width: 115% !important;
}
}
@media (max-width: 450px) {
      .lp-screens-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media screen and (min-width: 600px) {
    .dis-flex12 {
        display: flex;
        margin: 0 auto;
    }
    .items1{
        flex: 2;
        max-width: 250px; margin: 0 auto;
    }
    .items2{
        flex: 1;
    }
}
@media screen and (max-width: 600px) {
    .items1{
        flex: 2;
        max-width: 300px; margin: 0 auto;
    }
}

.table--reqs{
  border:1px solid var(--lp-color-main);
  border-radius:var(--radius);
  background:#fff;
  border-collapse:separate;
  border-spacing:0;
  width:100%;
  box-shadow:var(--shadow);
}
.table--reqs th, .table--reqs td{
  padding:12px 14px;
  border-bottom:1px solid var(--lp-color-sub);
  vertical-align:top;
  text-align:left;
}
.table--reqs thead th{
  /* background:#f8f7ff;                  */
  color:var(--brand-ink);
  font-weight:700;
}
.table--reqs tbody tr:last-child td{ border-bottom:none }
.table--reqs td:first-child{ width:140px; font-weight:700; color:#374151 }
@media screen and (min-width:450px) and (max-width:640px){
  .table--reqs th, .table--reqs td{ font-size:.95rem; padding:10px }
  .table--reqs td:first-child{ width:auto }
}
@media screen and (max-width:450px){
  .table--reqs th, .table--reqs td{ padding:10px }
  .table--reqs td:first-child{ width:auto }
}
/* 注意書き */
.reqs__notes{
  margin:12px 0 0;
  padding-left:18px;
  color:#6b7280;
  font-size:.6rem;
  line-height:1.6;
}
.reqs__notes li{ margin:.25rem 0 }
.reqs__notes li::before{
  content: '※';
}

/* ===== System Structure ===== */
.sys{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(20px,3vw,28px);
  align-items:center;
  font-size:  80%;
}
.sys__img{
  width:100%;
  height:auto;
  border-radius:12px;
  /* border:1px solid var(--line); */
}
.sys__desc p{
  margin:.5rem 0 1rem;
  color:#374151;
  
}
.sys__desc ul{
  margin:0 0 1rem 1.2rem;
  color:#4b5563;
  /* font-size:.95rem; */
   font-size:  50%;
  line-height:1.6;
}
.sys__desc li{margin:.3rem 0}
@media(max-width:860px){
  .sys{grid-template-columns:1fr;gap:16px}
  .sys__desc ul{margin-left:1rem}
}
/* ===== System Structure (vertical layout) ===== */
.sys--vertical{
  display:flex;
  flex-direction:column;
  align-items:center;
  background:#fff;
  border:1px solid var(--lp-color-main);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(20px,3vw,28px);
  text-align:left;
}
.sys__diagram{
  width:100%;
  margin-bottom:20px;
  text-align: center;
}
.sys__img{
  width:100%;
  height:auto;
  /* border-radius:12px;
  border:1px solid var(--line); */
}
.sys__desc{
  width:100%;
  max-width:800px;
}
.sys__desc p{
  margin:.5rem 0 1rem;
  color:#374151;
}
.sys__desc ul{
  margin:0 0 1rem 1.2rem;
  color:#4b5563;
  font-size:.95rem;
  line-height:1.6;
}
.sys__desc li{margin:.3rem 0}
@media(max-width:640px){
  .sys__desc ul{margin-left:1rem}
}
/* 表示制御 */
.only-mobile{display:none}
@media (max-width:860px){ .only-mobile{display:block} }

.demo-section {
  text-align: center;
  padding: 80px 0;
  background: #f9fafb;
}

.video-frame {
  position: relative;
  display: inline-block;
  width: 100%;   /* 全体サイズを調整 */
  max-width: 600px;
}

.frame-image {
  width: 100%;
  display: block;
}

.frame-video {
  position: absolute;
  top: 12%;    /* 画像の中の画面位置に合わせる */
  left: 11%;
  width: 78%;  /* PC画面部分の幅に合わせる */
  height: 72%;
  border-radius: 4px;
  object-fit: cover;
}
.demo{background:#f9fafb;text-align:center}
.frame{position:relative;display:inline-block;width:min(860px,92vw)}
.frame-img{width:100%;display:block}

/* 画像中の“画面”位置に合わせて数値を微調整 */
.screen{
  position:absolute; top:9%; left:21%;
  width:57.7%; height:80%;
}
.screen lite-youtube{width:100%; height:100%; display:block; border-radius:6px; overflow:hidden}
@media screen and (min-width:669px) and (max-width: 768px) {
  .video-frame {
  position: relative;
  display: inline-block;
  width: 100%;   /* 全体サイズを調整 */
  max-width: 600px;
}
  .frame {
    width: 94%;
     margin-left: 3%;
    margin-right: 3%;
  }
  .frame img {
    max-width: 90%;
  }
  .screen {
   width:100%; height:100%;
    top: 8%;
    left: 19%;
    width: 62%;
    height: 78%;
  }
}
@media screen and (min-width:569px) and (max-width: 668px) {
   .screen {
   width:100%; height:100%;
    top: 8%;
    left: 7%;
    width: 86%;
    height: 78%;
  }
}
@media screen and (min-width:481px) and (max-width: 568px) {
   .screen {
   width:100%; height:100%;
    top: 8%;
    left: 7%;
    width: 86%;
    height: 78%;
  }
}
@media screen and (max-width: 480px) {
  .frame {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
  }

  .frame img {
    max-width: 100%;
  }
  .screen {
    width:100%; height:100%;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 77%;
  }
}

.system-mini-title{
    font-size: medium;
    font-weight: bold;
}

/* 横並びコンテナ */
.price-card-row {
  max-width: 1000px;          /* サイトのmax-widthと合わせる */
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* カード本体 */
.price-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  border: 1px solid rgb(238 140 28 / 86%);
  display: flex;
  flex-direction: column;
}

/* 上部ヘッダー */
.price-card__header {
  text-align: center;
  padding: 20px 16px 18px;
  background: #fff7ec;
  border-bottom: 1px solid rgba(238, 140, 28, 0.2);
}

.price-card__plan-label {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--lp-color-main, #ee8c1c);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card__subtitle {
  margin: 0 0 6px;
  font-size: 13px;
  color: #555;
}

.price-card__amount {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.price-card__yen {
  font-size: 18px;
  vertical-align: baseline;
}

.price-card__num {
  font-size: 28px;
  letter-spacing: 0.03em;
}

.price-card__tax {
  font-size: 12px;
  margin-left: 4px;
  color: #555;
}

/* 中央ボディ */
.price-card__body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 特徴リスト */
.price-card__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 13px;
  color: #444;
}

.price-card__features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
  line-height: 1.7;
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: var(--lp-color-main, #ee8c1c);
}

/* ブロック（追加ライセンス・連携概要） */
.price-card__block {
  background: #fffaf4;
  border-radius: 14px;
  border: 1px solid rgba(238, 140, 28, 0.2);
  padding: 12px 14px;
  text-align: center;
  margin-bottom: 10px;
}

.price-card__block--muted {
  background: #f8f8f8;
  border-style: dotted;
}

.price-card__block-title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
}

.price-card__block-text {
  margin: 0;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
}

.price-card__block-text--note {
  margin-top: 4px;
  font-size: 12px;
  color: #555;
}

.price-card__block-price {
  font-weight: 700;
  font-size: 16px;
}

.price-card__block-tax {
  font-size: 12px;
  margin-left: 4px;
}

/* CTAボタン */
.price-card__cta {
  margin: 16px 0 8px;
  text-align: center;
}

.lp-btn--full {
  max-width: 260px;
}

/* フッター注意書き */
.price-card__footer {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.price-card__small {
  font-size: 9px;
}

/* スマホレイアウト */
@media (max-width: 768px) {
  .price-card-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 課題セクションのカード（人アイコン付き） */

.lp-card--problem {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--lp-color-main);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  padding: 24px 18px 20px;
  text-align: center;
}

/* アイコン丸枠 */
.lp-problem-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--lp-color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-problem-card__icon img {
  width: 90%;
  height: auto;
}

/* 役割（作業者・管理者） */
.lp-problem-card__role {
  font-size: 12px;
  color: #666;
  margin: 6px 0 6px;
}

/* 見出し（赤） */
.lp-problem-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* 課題リスト */
.lp-problem-card__list {
  list-style:circle;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}

.lp-problem-card__list ::before {
    content: "・";
    position: absolute;
    left: 4px;
    top: 0;
}



.lp-problem-card__list li {
  position: relative;
  padding-left: 18px;
  margin: 1%;
  margin-bottom: 6px;
}

/* SP調整 */
@media (max-width: 768px) {
  .lp-card--problem {
    padding: 18px 14px 16px;
  }
}

/* 関連製品エリア */
.related-lead {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* グリッド（5製品） */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
  .related-card {
  max-width: 300px;
  margin: 0 auto;
}
}

/* カード共通デザイン */
.related-card {
  background: #fff;
  padding: 18px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #ccc;
}

.related-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.related-desc {
  font-size: 13px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* リンクボタン */
.related-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  color: #ee8c1c;
  transition: 0.2s ease;
}

.related-link:hover {
  background: #ee8c1c;
  border-color: #ee8c1c;
  color: #fff;
}

/* 各製品のブランドカラー帯 */
.related-prevision  { border-color: #767777; }
.related-sakusuma   { border-color: #009ee0; }
.related-scan       { border-color: #c3221f; }
.related-across     { border-color: #9c27b0; }
.related-koutei     { border-color: #2411f6; }

/* 料金例（5台利用時） */
.price-ex-lead{
  margin: 6px 0 18px;
  font-size: 14px;
  color:#444;
  line-height:1.7;
}
.price-ex-note{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:#666;
}

/* 2枚横並び（SPで縦） */
.price-ex-row{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
@media (max-width: 768px){
  .price-ex-row{ grid-template-columns:1fr; }
}

/* カード */
.price-ex-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.09);
  border: 1px solid rgb(238 140 28 / 86%);}

/* 上部ヘッダー（料金カードと統一感） */
.price-ex-head{
  text-align:center;
  padding:18px 16px 14px;
  background:#fff7ec;
  border-bottom:1px solid rgba(238,140,28,.2);
}
.price-ex-badge{
  display:inline-block;
  padding:4px 12px;
  border-radius:999px;
  background:var(--lp-color-main,#ee8c1c);
  color:#fff;
  font-size:12px;
  font-weight:700;
  margin-bottom:8px;
}
.price-ex-title{
  margin:0 0 4px;
  font-size:16px;
  font-weight:800;
  color:#222;
}
.price-ex-sub{
  margin:0;
  font-size:12px;
  color:#555;
}

/* 中身 */
.price-ex-body{
  padding:16px 18px 18px;
}

/* 計算ブロック */
.price-ex-calc{
  background:#fffaf4;
  border:1px solid rgba(238,140,28,.2);
  border-radius:14px;
  padding:12px 12px;
  margin-bottom:12px;
}
.price-ex-line{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:12px;
  padding:6px 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
}
.price-ex-line:last-child{ border-bottom:none; }

.price-ex-label{
  font-size:13px;
  color:#555;
}
.price-ex-val{
  font-size:13px;
  color:#222;
  font-weight:700;
}

.price-ex-line--sum{
  margin-top:2px;
  padding-top:10px;
}
.price-ex-total{
  font-size:18px;
  color:var(--lp-color-main,#ee8c1c);
}

/* ポイント */
.price-ex-points{
  list-style:none;
  margin:0 0 14px;
  padding:0;
  font-size:13px;
  color:#444;
}
.price-ex-points li{
  position:relative;
  padding-left:18px;
  margin-bottom:6px;
  line-height:1.7;
}
.price-ex-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:1px;
  color:var(--lp-color-main,#ee8c1c);
  font-size:12px;
}
.price-ex-small{
  font-size:11px;
  color:#666;
}

/* ボタン幅 */
.lp-btn--full{
  /* width:100%; */
  max-width:360px;
  margin:0 auto;
  display:flex;
  justify-content:center;
}
