@charset "utf-8";

/* 横並びのコンテンツを再現 */
.card-list {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
}
.card-item {
    flex: 1 1 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: #fbfbfb;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.283);
    padding: 18px;
}

/* スマートフォン（480px以上） */
@media (min-width: 480px) {
    .card-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .card-item {
        flex: 1 1 0;
        max-width: 320px;
        min-width: 200px;
    }
}

/* タブレット以上（800px以上） */
@media (min-width: 800px) {
    .card-list {
        flex-wrap: nowrap;
        justify-content: center;
    }
    .card-item {
        flex: 1 1 0;
        max-width: 320px;
        min-width: 200px;
    }
}

/* ボタンの装飾 */
.button-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.rounded-btn {
    display: inline-block;
    padding: 0.6em 2em;
    background: #dcdcdc;
    color: #6c6c6c !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.rounded-btn:hover, .rounded-btn:focus {
    background: #6c6c6c;
    color: #fff !important;
    text-decoration: none;
}
.software_dl_button{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* こんな「困った︕」ありませんか︖のスタイル */
.qedt_h2 {
    all: revert !important;
    font-size: 1.2em !important;
    text-align: center !important;
    position: relative !important;
    padding: .5em .7em !important;
    background-color: #FFD1D1 !important;
    color: #6c6c6c !important;
}

/* Quick Editorなら、⼀気に解決︕のスタイル */
.qedt_h2-image {
    all: revert !important;
    background-image: url("screens/b_lpmb_ss_titleback.png") !important; /* 画像パスを指定 */
    background-size: cover !important;   /* 要素いっぱいに拡大縮小 */
    background-position: center !important; /* 中央寄せ */
    padding: 20px !important;            /* 内側余白 */
    text-align: center !important;       /* 中央寄せ */
    line-height: 1.2 !important;        /* 行の高さを少し詰める */
    padding-bottom: 40px !important;    /* 下余白を増やす */
    color:#fff !important;
}

@media (min-width: 480px) {
    .qedt_h2-image {
        background-image: url("screens/b_lppc_ss_titleback.png") !important; /* 画像パスを指定 */
    }
}

/* 印刷までは、3ステップ︕のスタイル */
.qedt_h3 {
    all: revert !important;
    text-align: center !important;
    position: relative !important;
    padding: .5em .7em !important;
    background-color: #03b645 !important;
    border-radius: 10px !important;
    color: #fff !important;
}

/* セクションの横幅を調整して、モバイルで左右に若干の余白ができるように調整する */
.section {
    width: 96% !important;
    margin-left:2% !important;
    margin-right: 2% !important;
}

/* Quick Editorなら、⼀気に解決︕配下の表3つのスタイル */
.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;   /* 四隅の角R */
    overflow: hidden;      /* 角Rに沿わせる */
    margin-bottom: 15px;
}
.row {
    display: flex;
    justify-content: center; /* 横中央揃え */
    align-items: center;     /* 縦中央揃え（固定高の1行目用） */
}
.row:first-child {
    height: 40px;           /* 1行目 固定 */
    background: #8d8d8d;       /* 灰色 */
    font-weight: 600;
}
/* ▼ 2行目は縦積み（column）に変更。内容量で高さ可変 */
.row:last-child {
    background: #fff;       /* 白 */
    padding: 20px;
    flex-direction: column; /* ここがポイント！縦並びにする */
    align-items: center;     /* 横方向の中央寄せ */
    gap: 0px;               /* 要素間のすき間（任意） */
}
.step-text{
    color:#fff !important;
}
#contents .row:last-child p {
    margin-bottom: 0.3em !important; /* 段落の下余白を消す */
}
.case1 {
    border-radius: 10px !important;   /* 四隅の角R */
    overflow: hidden !important;     /* 角Rに沿わせる */
    width: 96% !important;
    margin-left:1% !important;
    margin-right: 3% !important;
}

/* Quick Editorなら、⼀気に解決︕配下の本文の文字を小さく */
.font-small {
    font-size: 0.9em;
}

#contents {
    width: 100% !important;
}

.qedt_dl_link{
    text-align: center;
    font-weight: bold;
}

/* ------------------------------------- */
/* デフォルト (モバイル向け: min-widthの条件を満たさない場合) */
/* ------------------------------------- */

/* モバイルファースト：すべての画像について、 */
/* モバイル用画像を表示し、PC用画像を非表示にする */
.pc-img {
    display: none; /* PC用画像を非表示 */
}

.sp-img {
    display: block; /* モバイル用画像を表示 (インライン要素をブロック化) */
    width: 100%; /* 必要に応じて幅を調整 */
    height: auto;
}


/* ------------------------------------- */
/* メディアクエリ (PC向け: 画面幅が768px以上の場合に適用) */
/* ------------------------------------- */
@media (min-width: 800px) {

    /* 設定を反転 */
    .pc-img {
        display: block; /* PC用画像を表示 */
        width: 100%; /* 必要に応じて幅を調整 */
        height: auto;
    }

    .sp-img {
        display: none; /* モバイル用画像を非表示 */
    }

}