@charset "utf-8";

/* -------------------------------------------------------------------------------- */
.dp-tabs[data-dp] {
    --dp-primary: #10b3aa;
    --dp-primary-dark: #0a8a82;
    --dp-dark: #0f1720;
    --dp-gray-900: #1a202c;
    --dp-gray-700: #4a5568;
    --dp-gray-300: #e2e8f0;
    --dp-teal: #118c83;
    --dp-border: #e5eef1;
    --dp-muted: #7a8a95;
    font-family: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--dp-gray-900);
    margin: 0;
    padding: 0
}

.dp-tabs[data-dp] * {
    box-sizing: border-box
}

.dp-tab-nav {
    display: flex;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid var(--dp-gray-300);
    margin-bottom: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 141%;
}

.dp-tab-btn {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 10px 12px;
    border: 1px solid var(--dp-gray-300);
    border-radius: 10px;
    background: #fff;
    font: 700 .95rem/1.2 inherit;
    color: var(--dp-gray-700);
    cursor: pointer;
    transition: .2s
}

.dp-tab-btn:hover,
.dp-tab-btn.is-active {
    background: var(--dp-primary);
    color: #fff;
    border-color: var(--dp-primary)
}

.dp-tab-panel {
    display: none;
    margin: 0
}

.dp-tab-panel.is-active {
    display: block
}

.dp-section-header {
    text-align: center;
    margin: 0 0 20px
}

.dp-section-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--dp-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px
}

.dp-section-title {
    display: block;
    margin: 8px 0 0;
    font-weight: 900;
    font-size: 22px;
    color: var(--dp-dark);
    position: relative;
    padding-bottom: 8px
}

.dp-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--dp-primary);
    border-radius: 999px
}

.dp-inspection-lead {
    max-width: 900px;
    margin: 0 auto 16px;
    padding: 12px 14px;
    border: 1px solid var(--dp-gray-300);
    border-radius: 10px;
    background: #f7fbff
}

.dp-lead-title {
    font-weight: 900;
    font-size: 26px;
    text-align: center;
    margin: 0 0 8px;
    color: var(--dp-dark)
}

.dp-brand {
    color: var(--dp-primary)
}

.dp-compare {
    padding: 40px 14px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9)
}

.dp-compare-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
    align-items: center
}

.dp-pcard {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .10);
    padding: 24px
}

.dp-pcard--expensive {
    margin-bottom: 8px;
    border-color: #f87171
}

.dp-pcard--brand {
    margin-top: 8px;
    border: 3px solid var(--dp-primary);
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(16, 179, 170, .18)
}

.dp-pcard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 16px
}

.dp-pcard-title {
    margin: 0;
    font-weight: 900;
    color: var(--dp-dark);
    font-size: clamp(14px, 2.8vw, 22px)
}

.dp-pcard-badge {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: var(--dp-primary);
    color: #fff
}

.dp-pcard-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px
}

.dp-pcard-label {
    color: var(--dp-gray-700);
    font-weight: 700;
    font-size: 18px
}

.dp-pcard-price {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.dp-price-value {
    font-weight: 900;
    font-size: clamp(40px, 6vw, 48px);
    color: var(--dp-dark)
}

.dp-price-yen {
    font-weight: 600;
    color: var(--dp-gray-700);
    font-size: clamp(14px, 2vw, 18px)
}

.dp-price--accent .dp-price-value {
    color: #e53935
}

.dp-compare-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0
}

.dp-arrow-down {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    animation: bounce 2s infinite
}

.dp-arrow-down::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg)
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-8px)
    }
}

.dp-compare-copy {
    display: grid;
    gap: 20px
}

.dp-compare-title {
    margin: 0;
    font-weight: 900;
    color: var(--dp-dark);
    line-height: 1.2;
    font-size: clamp(24px, 4vw, 36px)
}

.dp-compare-lead {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 800;
    color: var(--dp-primary)
}

.dp-compare-bullets {
    display: grid;
    gap: 12px;
    margin: 8px 0
}

.dp-compare-bullets>div {
    position: relative;
    padding: 12px 16px 12px 40px;
    background: #fff;
    border-radius: 12px;
    color: #374151;
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    border: 1px solid #e5e7eb;
    margin: 0
}

.dp-compare-note {
    margin: 12px 0 0;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, .8);
    padding: 8px 12px;
    border-radius: 8px
}

.dp-table-grid {
    width: 100%;
    border-collapse: collapse
}

.dp-table-grid th,
.dp-table-grid td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--dp-border);
    border-right: 1px solid var(--dp-border)
}

.dp-table-grid th {
    background: #f1f7f7;
    font-weight: 800;
    font-size: 15px
}

.dp-table-grid th:first-child {
    text-align: left;
    width: 120px
}

.dp-table-grid th.brand-col {
    background: var(--dp-teal);
    color: #fff
}

.dp-table-grid td:first-child {
    text-align: left;
    font-weight: 700;
    background: #fff
}

.dp-table-grid .brand-col {
    background: #eef9f8
}

.dp-table-grid tr:nth-child(even) td:not(.brand-col) {
    background: #f6fbfb
}

.dp-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
    font-size: 14px;
    color: var(--dp-gray-700)
}

.dp-legend-item::before {
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

.dp-legend-good::before {
    content: "â—‹";
    color: #0aa79a;
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0 0 1px #0aa79a
}

.dp-legend-mid::before {
    content: "â–²";
    color: #f59e0b;
    font-weight: 900;
    font-size: 14px
}

.dp-legend-bad::before {
    content: "Ã—";
    color: #9aa7b4;
    font-weight: 900;
    font-size: 16px
}

.dp-points-section {
    margin: 24px 0
}

.dp-points-cards {
    display: grid;
    gap: 16px;
    margin: 20px 0
}

.dp-points-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px
}

.dp-points-number {
    display: inline-block;
    background: var(--dp-primary);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 8px
}

.dp-points-card-title {
    font-weight: 800;
    font-size: 16px;
    color: var(--dp-dark);
    margin: 0 0 8px
}

.dp-features {
    margin: 24px 0
}

.dp-features-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.dp-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center
}

.dp-feature-title {
    font-weight: 800;
    font-size: 16px;
    color: var(--dp-dark);
    margin: 0 0 8px
}

.dp-subtitle {
    font-weight: 800;
    font-size: 18px;
    color: var(--dp-dark);
    margin: 0 0 16px;
    text-align: center
}

@media(min-width: 980px) {
    .dp-compare-inner {
        grid-template-columns: 1fr 1.2fr;
        gap: 48px
    }
}

@media(min-width: 768px) {
    .dp-points-cards {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width: 767px) {
    .dp-tab-nav {
        gap: 10px;
        padding: 10px 12px;
        margin-bottom: 16px
    }

    .dp-tab-btn {
        white-space: nowrap;
        padding: 10px 14px;
        min-width: auto;
        border-radius: 999px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, .06)
    }

    .dp-tab-btn.is-active {
        box-shadow: 0 2px 10px rgba(16, 179, 170, .25)
    }

    .dp-sm-hide {
        display: none
    }

    .dp-table-grid th,
    .dp-table-grid td {
        padding: 8px;
        font-size: 13px
    }

    .dp-table-grid th:first-child {
        width: 100px
    }

    .dp-pcard-badge {
        font-size: 10px
    }

    .dp-pcard-label {
        font-size: 12px
    }
}

@media(prefers-reduced-motion:reduce) {
    .dp-arrow-down {
        animation: none
    }
}

.dp-table-scope {
    --brand: #10b3aa;
    --ink: #0f1720;
    --muted: #5b6b78;
    --ring: #e6edf2;
    --good: #0ea5a3;
    --mid: #f59e0b;
    --bad: #9aa7b4
}

.dp-noscroll {
    overflow: hidden
}

.dp-simple-table .dp-table-wrapper {
    max-width: 2300px;
    margin: 20px auto;
    background: #fff;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    outline: none;
    border: 1px solid #d4e8e6;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(16, 179, 170, .08)
}

.dp-simple-table .dp-table-wrapper:focus-visible {
    box-shadow: 0 0 0 3px rgba(16, 179, 170, .35)
}

.dp-simple-table .dp-table-grid {
    display: grid;
    grid-template-columns: minmax(90px, 1.2fr) repeat(3, 1fr)
}

.dp-simple-table .dp-table-row {
    display: contents
}

.dp-simple-table .dp-table-cell {
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid var(--ring);
    border-left: 1px solid var(--ring);
    color: var(--ink)
}

.dp-simple-table .dp-table-row.head .dp-table-cell {
    background: #fbfcfe;
    font-weight: 800;
    font-size: 150%;
}

.dp-simple-table .dp-table-row:first-child .dp-table-cell {
    border-top: none
}

.dp-simple-table .dp-table-cell:first-child {
    border-left: none
}

.dp-simple-table .dp-table-cell.feat {
    justify-content: flex-start;
    font-weight: 800;
    font-size: 150%;
}

@media(max-width: 767px) {
    .dp-simple-table .dp-table-cell.feat {
        justify-content: flex-start;
        font-weight: 800;
        font-size: 150%;
        text-align: justify;
        line-height: 1.4;
    }
}

.dp-simple-table .dp-table-cell.head.brand {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #0aa19a)
}

.dp-simple-table .dp-table-row:not(.head) .brand {
    background: linear-gradient(180deg, rgba(16, 179, 170, .09), rgba(16, 179, 170, .06))
}

.dp-simple-table .dp-table-row:not(.head):hover .dp-table-cell {
    background: #f6fbfb
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-row.head .dp-table-cell {
    white-space: nowrap
}

.dp-mark {
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: middle
}

.dp-mark-good {
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px var(--good)
}

.dp-mark-mid {
    background: var(--mid);
    clip-path: polygon(50% 15%, 6% 88%, 94% 88%)
}

.dp-mark-bad {
    position: relative
}

.dp-mark-bad::before,
.dp-mark-bad::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 2px;
    width: 3px;
    height: 18px;
    background: var(--bad);
    border-radius: 2px
}

.dp-mark-bad::before {
    transform: rotate(45deg)
}

.dp-mark-bad::after {
    transform: rotate(-45deg)
}

.dp-table-legend {
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin: 10px auto;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
    max-width: 1100px
}

.dp-table-legend li {
    display: flex;
    align-items: center
}

.dp-table-legend .dp-mark {
    margin-right: 6px
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px env(safe-area-inset-right) 28px env(safe-area-inset-left) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, .92) !important;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overflow: auto !important;
    animation: dp-fade-in .16s ease-out
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 12px 12px 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18), 0 8px 24px rgba(0, 0, 0, .08);
    max-width: calc(100% - 48px);
    width: 100%;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column
}

@keyframes dp-fade-in {
    from {
        opacity: .001
    }

    to {
        opacity: 1
    }
}

@media(prefers-reduced-motion:reduce) {
    .dp-simple-table .dp-table-wrapper.fullscreen-mode {
        animation: none
    }
}

.dp-simple-table .dp-table-scroller {
    position: relative;
    overflow: visible
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 179, 170, .45) rgba(16, 179, 170, .08);
    flex: 1;
    min-height: 0
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller::-webkit-scrollbar {
    height: 6px
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller::-webkit-scrollbar-track {
    background: rgba(16, 179, 170, .08);
    border-radius: 8px
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller::-webkit-scrollbar-thumb {
    background: rgba(16, 179, 170, .45);
    border-radius: 8px
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-row.head .dp-table-cell {
    position: sticky;
    top: 0;
    z-index: 2;
    border-top: none;
    box-shadow: 0 2px 0 var(--ring);
    background: #fbfcfe !important
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-cell.head.brand {
    background: linear-gradient(135deg, var(--brand), #0aa19a) !important
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-grid {
    min-width: 600px
}

@media(max-width: 767px) {
    .dp-simple-table .dp-table-grid {
        grid-template-columns: minmax(80px, 1fr) repeat(3, 1fr)
    }

    .dp-simple-table .dp-table-cell {
        padding: 10px 8px;
        font-size: 12px
    }

    .dp-table-legend {
        flex-wrap: wrap;
        justify-content: center
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode {
        padding: 10px env(safe-area-inset-right) 24px env(safe-area-inset-left) !important
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-grid {
        min-width: 500px
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller::before,
    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 28px;
        pointer-events: none;
        opacity: 0;
        transition: opacity .2s ease
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller.show-left::before {
        left: 0;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        background: linear-gradient(to right, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
        opacity: 1
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scroller.show-right::after {
        right: 0;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
        background: linear-gradient(to left, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
        opacity: 1
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scrollbar {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 6px;
        height: 4px;
        background: rgba(16, 179, 170, .12);
        border-radius: 999px;
        overflow: hidden;
        pointer-events: none;
        z-index: 9
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scrollbar__thumb {
        height: 100%;
        width: 30%;
        background: rgba(16, 179, 170, .55);
        border-radius: 999px;
        transform: translateX(0);
        transition: transform .08s linear
    }

    .dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-scrollbar.hidden {
        opacity: 0
    }
}

.dp-simple-table .dp-table-close-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    font-weight: 900;
    line-height: 38px;
    color: #fff;
    background: linear-gradient(135deg, #d7266b, #a31962);
    border: none;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .22)
}

.dp-simple-table .dp-table-close-btn:focus-visible {
    outline: 3px solid rgba(16, 179, 170, .6)
}

.dp-simple-table .dp-table-wrapper.fullscreen-mode .dp-table-close-btn {
    display: block !important
}

/* -------------------------------------------------------------------------------- */

/*--------------------------------------
  モーダル表示上から_002
--------------------------------------*/
.modal_volkswagen .modal_wrap input {
    display: none;
}

.modal_volkswagen .modal_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}

.modal_volkswagen .modal_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.modal_volkswagen .modal_content {
    align-self: center;
    width: 96%;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
}

.modal_volkswagen .modal_content p {
    padding-top: 0;
}

.modal_volkswagen .close_button {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

.modal_volkswagen .modal_wrap input:checked~.modal_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}

.modal_volkswagen .modal_wrap input:checked~.modal_overlay .modal_content {
    transform: translateY(20px);
}

.modal_volkswagen .open_button {
    color: #4f96f6;
    background-color: #ffffff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 40px;
    margin-bottom: 1px;
    padding: 12px 2px;
    max-width: 1180px;
    text-decoration: none;
}

@media(max-width: 767px) {
.modal_volkswagen .open_button {
    color: #4f96f6;
    background-color: #ffffff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 0px;
    margin-bottom: 1px;
    padding: 12px 2px;
    max-width: 1180px;
    width: 92%;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
}
}

.modal_volkswagen .open-button:active {
    /*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    /*下に動く*/

}

/*アイコンを表示*/
.modal_volkswagen .open-button:after {
    font-family: "Font Awesome 5 Free";
    content: "\f2d0";
    padding-left: 8px;
}

/*ラベルホバー時*/
.modal_volkswagen .open-button:hover {
    color: #FFFFFF;
    background-color: #4f96f6;
    transition: .6s;
}

.modal_volkswagen .modal_title2 {
    font-size: 1.5em;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

.modal_volkswagen .modal_title2::before,
.modal_volkswagen .modal_title2::after {
    content: "";
    position: absolute;
    bottom: 0;
}

/* h2 プライマリカラー*/
.modal_volkswagen .modal_title2:before {
    border-bottom: 0px solid #6bb6ff;
    width: 100%;
}

/* h2 セカンダリカラー*/
.modal_volkswagen .modal_title2:after {
    border-bottom: 0px solid #c8e4ff;
    width: 100%;
}

.dp-table-legend {
    margin-top: -4%;
}

@media(max-width: 767px) {
    .modal_volkswagen .dp-table-legend {
        margin-top: -8%;
    }
}
.modal_volkswagen .ct-wrapper-container .ct-row:not(.head):hover .ct-cell {
  background: rgba(128, 128, 128, 0.03)
}
.modal_volkswagen .ct-wrapper-container .ct-table-wrapper {
  max-width: 2300px;
  margin: 20px auto;
  background: #fff;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  outline: 0;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .08)
}
