
/* 青色のリード文 */
.product-summary {
    color: #1a2792 !important;
    font-weight: bold;
    font-size: 1.15em;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.6;
}

/* 共通のカードレイアウト */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* 隙間を少し狭めて20pxから15pxに調整 */
    margin-top: 25px;
    width: 100%;
}

/* カード本体：左右と下に薄いグレーの線を追加して輪郭を出す */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    /* 全体を囲む薄い線 */
    border: 1px solid #d1d9e0;
    /* 上の太線：緑をデフォルトに設定 */
    border-top: 6px solid #00d1a0;
    /* 影の設定 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px 15px;
    flex: 1;
    /* 980pxで4列を維持するための最小幅 */
    min-width: 215px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* カード上部が青色の設定 */
.product-card.card-blue {
    border-top: 6px solid #3b31ff;
}

/* カード内のタイトル */
.card-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.4;
    display: block;
}

.product-card p {
    font-size: 0.85em; /* テキストサイズを微調整 */
    line-height: 1.5;
}

/* カード上部の色が青の場合 */
.card-blue {
    border-top: 6px solid #3b31ff;
}

/* グレーの枠付きボックス（製品概要や主な機能の要約用） */
.info-box-light {
    background-color: #f0fdfa; /* 薄い緑背景 */
    border: 2px solid #00d1a0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.info-box-light p {
    color: #1a365d;
    font-weight: bold;
    line-height: 1.7;
}

/* 箇条書き：画像と同じ四角いアイコン */
.list-sq {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.list-sq li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #4a5568;
}

.list-sq li::before {
    content: "■";
    position: absolute;
    left: 0;
    font-size: 0.8em;
    top: 0.1em;
}

/* 箇条書きの色分け */
.bullet-green li::before { color: #00d1a0; }
.bullet-blue li::before { color: #3b31ff; }


/* 強みセクションの円数字 */
.circle-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d1a0, #3b31ff);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ①③ 奇数：緑から青へのグラデーション */
.circle-num-odd {
    background: linear-gradient(135deg, #00d1a0 0%, #3b31ff 100%);
}

/* ②④ 偶数：青から緑へのグラデーション */
.circle-num-even {
    background: linear-gradient(135deg, #3b31ff 0%, #00d1a0 100%);
}

/* 既存の card-title 以降はそのまま */
.card-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
    color: #1a202c;
}

/* ユーティリティ */
.mT10 { margin-top: 10px; }
.mT20 { margin-top: 20px; }
.taC { text-align: center; }

@media (max-width: 768px) {
    .card-container { flex-direction: column; }
}