@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* =======================================================
   デザインサポートLP 専用CSS 
   Last Update: 2026/02/26 (Cleaned version)
======================================================= */

.design-lp *,
.design-lp *::before,
.design-lp *::after {
    box-sizing: border-box;
}

.design-lp .text-red {
    color: #ff5500 !important;
}

.design-lp {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    color: #333;
    overflow-x: hidden;
}

/* -------------------------------------------------------
   1. ヒービジュアル（H1 + メイン画像）
------------------------------------------------------- */

.design-lp .hero-area {
    margin: 0 0 24px;
    background: #eef4ff;
    border: 1px solid #ccd9f5;
    border-top: none;
    line-height: 1;
}

.design-lp .hero-main-img {
    width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------
   2. CTAエリア
------------------------------------------------------- */
.design-lp .cta-area {
    text-align: center;
    margin: 28px 0;
    padding: 26px 16px;
    background: #285fd5;
    border-radius: 0;
}

.design-lp .cta-area>p {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 14px;
    line-height: 1.5;
}

.design-lp .cta-area .cta-note {
    font-size: 12px;
    font-weight: normal;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.design-lp .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}



.design-lp a.cta-main-btn {
    font-size: 24px;
    font-weight: bold;
    padding: 16px 60px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff8427 0%, #ff5e00 100%);
    box-shadow: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    border: none;
    transition: all 0.2s ease;
    gap: 8px;
}

.design-lp a.cta-main-btn .material-symbols-outlined {
    font-size: 24px;
    vertical-align: middle;
}

.design-lp a.cta-main-btn:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

/* -------------------------------------------------------
   3. 目次
------------------------------------------------------- */
.design-lp .tocContainer {
    margin: 0 auto 28px;
    padding: 20px 28px;
    background: #fff;
    border: 1px solid #285fd5;
    border-radius: 10px;
    width: fit-content;
    min-width: 360px;
    max-width: 100%;
}

.design-lp .tocList {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 28px;
}

.design-lp .tocList li {
    margin-bottom: 7px;
    padding-left: 1.4em;
    position: relative;
    line-height: 1.4;
    break-inside: avoid;
}

.design-lp .tocList li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #285fd5;
    font-size: 0.6em;
    top: 0.38em;
}

.design-lp .tocList li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.design-lp .tocList li a:hover {
    color: #285fd5;
    text-decoration: underline;
}

/* -------------------------------------------------------
   4. セクション共通見出し & リード文
------------------------------------------------------- */
.design-lp h2.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: #285fd5;
    padding: 10px 16px;
    margin: 0 0 16px;
    line-height: 1.4;
}

.design-lp h3.sub-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #285fd5;
    padding-bottom: 5px;
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.design-lp .section-lead {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px;
    text-align: center;
}

/* -------------------------------------------------------
   5. 商品カードグリッド
------------------------------------------------------- */
.design-lp .ds-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 0 28px;
}

.design-lp .ds-card {
    background: #fff;
    border: 1px solid #dde4f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.design-lp .ds-card:hover {
    box-shadow: 0 4px 16px rgba(40, 95, 213, 0.12);
}

.design-lp .ds-card-img {
    background: #f5f7fc;
    text-align: center;
    padding: 16px 16px 8px;
}

.design-lp .ds-card-img img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.design-lp .ds-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #285fd5;
    padding: 10px 16px 6px;
    margin: 0;
    line-height: 1.3;
}

.design-lp .ds-card-prices {
    padding: 0 16px 12px;
    flex: 1;
}

.design-lp .ds-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 6px 0;
    padding: 0;
}

.design-lp .ds-price-row dt {
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
    flex: 0 0 85px;
    text-align: center;
}

.design-lp .ds-price-row.design dt {
    background: #285fd5;
}

.design-lp .ds-price-row.print dt {
    background: #ff8c00;
}

.design-lp .ds-price-row dd {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.design-lp .ds-price-value {
    font-size: 22px;
    font-weight: bold;
    color: #ff5500;
}

.design-lp .ds-price-row dd small {
    font-size: 12px;
    color: #888;
    margin-left: 2px;
}

.design-lp .ds-card-btn {
    display: block;
    margin: 0 16px 16px;
    padding: 10px 0;
    text-align: center;
    background: #ff5500;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.2s;
}

.design-lp .ds-card-btn:hover {
    opacity: 0.7;
    color: #fff;
}

/* -------------------------------------------------------
   6. 料金目安表 (compareTable)
------------------------------------------------------- */
.design-lp .compareTable {
    width: 50%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 10px auto 18px;
    font-size: 14px;
}

.design-lp .compareTable th,
.design-lp .compareTable td {
    padding: 9px 12px;
    vertical-align: middle;
    border-top: 1px solid #285fd5;
    border-bottom: 1px solid #285fd5;
    line-height: 1.5;
}

.design-lp .compareTable th {
    font-weight: bold;
    background: #eef4ff;
    color: #285fd5;
    text-align: left;
    width: 28%;
}

.design-lp .compareTable td {
    background: #fff;
    text-align: right;
}

.design-lp .compareTable td .price {
    font-size: 19px;
    font-weight: bold;
    color: #285fd5;
    display: inline-block;
    margin-right: 4px;
}

/* -------------------------------------------------------
   7. ご依頼の流れ (Flow)
------------------------------------------------------- */
.design-lp .lp-section.has-bg {
    padding: 18px 20px;
    background: #eef4ff;
    border-radius: 10px;
    margin: 0 0 28px;
}

.design-lp .flow-wrap {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.design-lp .flow-item {
    flex: 1;
    background: #fff;
    border: 1px solid #285fd5;
    border-radius: 8px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.design-lp .flow-connector {
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #285fd5;
    font-size: 18px;
    font-weight: bold;
}

.design-lp .flow-step {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #285fd5;
    border-radius: 3px;
    padding: 1px 7px;
    margin-bottom: 8px;
    display: inline-block;
}

.design-lp .flow-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.design-lp .flow-img img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.design-lp .flow-icon {
    font-size: 64px;
    color: #285fd5;
}

.design-lp .flow-title {
    font-weight: bold;
    font-size: 20px;
    color: #285fd5;
    margin: 0 0 5px;
}

.design-lp .flow-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* -------------------------------------------------------
   8. ご用意いただくもの / セクションボックス
------------------------------------------------------- */
.design-lp .lp-section-white {
    margin: 0 0 28px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #ccd9f5;
    border-radius: 10px;
}

.design-lp .required-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
    counter-reset: req-counter;
}

.design-lp .required-box {
    background: #eef4ff;
    border: 1px solid #ccd9f5;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    counter-increment: req-counter;
}

.design-lp .required-box::before {
    content: counter(req-counter);
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: #285fd5;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
}

.design-lp .required-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(40, 95, 213, 0.15);
}

.design-lp .required-box-img {
    width: 100%;
    line-height: 1;
}

.design-lp .required-box-img img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ccd9f5;
}

.design-lp .required-box-content {
    padding: 15px 12px;
}

.design-lp .required-box-title {
    font-weight: bold;
    color: #285fd5;
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-lp .required-box-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: left;
}

/* -------------------------------------------------------
   9. バッジ / リスト各種
------------------------------------------------------- */
.design-lp span.badge {
    display: inline-block;
    height: 22px;
    line-height: 22px;
    padding: 0 9px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 5px;
    vertical-align: middle;
}

.design-lp span.badge.blue {
    color: #285fd5;
    background: #eef4ff;
    border: 1px solid #285fd5;
}

.design-lp span.badge.orange {
    color: #fff;
    background: #ff5500;
    border: 1px solid #ff5500;
}

.design-lp span.badge.green {
    color: #07b642;
    background: #fff;
    border: 1px solid #07b642;
}

.design-lp .cancel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: cancel-item;
}

.design-lp .cancel-list li {
    background: #fff;
    border-radius: 8px;
    padding: 4px 14px 4px 26px;
    line-height: 1.7;
    font-size: 14px;
    position: relative;
    color: #444;
    counter-increment: cancel-item;
}

.design-lp .cancel-list li::before {
    content: counter(cancel-item);
    position: absolute;
    left: 4px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #333;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-lp .note-list,
.design-lp .prohibit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.design-lp .note-list {
    background: #f0f5ff;
    padding: 15px;
    border-radius: 8px;
}

.design-lp .prohibit-list {
    background: #fff5f5;
    padding: 15px;
    border-radius: 8px;
}

.design-lp .note-list li,
.design-lp .prohibit-list li {
    padding: 4px 14px 4px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    position: relative;
}

.design-lp .note-list li::before,
.design-lp .prohibit-list li::before {
    content: "●";
    position: absolute;
    left: 4px;
    top: 4px;
    color: #285fd5;
    font-size: 10px;
}

.design-lp .prohibit-list li::before {
    color: #ff6c6c;
}

.design-lp .caution-text {
    font-size: 12px;
    color: #666;
    line-height: 1.75;
    margin: 8px 0 0;
}

.design-lp .caution-text a {
    color: #285fd5;
}

/* -------------------------------------------------------
   10. 区切り線 & その他
------------------------------------------------------- */
.design-lp hr {
    margin: 28px 0;
    border: solid 1px #e5e5e5;
    border-bottom: 0;
}

.design-lp .topback {
    text-align: center;
    margin-top: 36px;
    margin-bottom: 8px;
}

.design-lp .topback a {
    font-size: 1.1em;
    padding: 10px 60px;
    border-radius: 5px;
    color: #fff;
    background: #285fd5;
    text-decoration: none;
    display: inline-block;
}

.design-lp .topback a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

/* -------------------------------------------------------
   11. レスポンシブ
------------------------------------------------------- */
@media (max-width: 900px) {
    .design-lp .ds-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-lp .tocList {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .design-lp a.cta-main-btn {
        font-size: 19px;
        padding: 12px 40px;
    }

    .design-lp .compareTable {
        width: 80%;
    }

    .design-lp .flow-wrap {
        flex-direction: column;
    }

    .design-lp .flow-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .design-lp .required-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .design-lp .ds-card-grid {
        grid-template-columns: 1fr;
    }

    .design-lp .required-grid {
        grid-template-columns: 1fr;
    }
}