@import url('variables.css');

#price {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--max-width-lg);
    padding-inline: var(--width-sp);
}

#price li {
    width: 50%;
    padding: 4rem;
    border-bottom: 1px solid var(--line-color);
}

#price li:first-child,
#price li:nth-child(2) {
    padding-top: 2rem;
}

#price li:nth-child(even) {
    border-left: 1px solid var(--line-color);
}

#price li>div {
    display: flex;
    gap: 2rem;
    width: 100%;
    margin-top: 1.5rem;
}

#price li>div>div {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

#price .material-symbols-outlined {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 6rem;
    font-weight: 100;
    color: var(--main-color);
}

strong {
    margin-bottom: .4em;
    color: var(--sub-color);
}

dl {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
}

dt {
    font-weight: 400;
}

dd {
    text-align: right;
}

dt,
dd,
#price p {
    line-height: 1.6em;
    color: #666;
}

.slider::after {
    background-image: url(/assets/img/slider/slider_04.png);
}

@media screen and (max-width:992px) {
    #price {
        display: block;
        padding-inline: var(--width-sm);
    }

    #price li {
        width: 100%;
        padding-inline: 0;
    }

    #price li:nth-child(even) {
        border-left: none;
    }

    #price li:first-child {
        padding-top: 0;
    }
}

@media screen and (max-width:650px) {
    #price {
        padding-inline: var(--width-sp);
    }

    #price li {
        padding-block: 3rem;
    }

    #price li>div {
        gap: 1rem;
    }
}