.title-group {
    align-items: center;
}

.desc {
    text-align: center;
}


/* fist-section */
.first-section {
    padding: 115px 0 0;
}

.first-section .content-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

/* fist-section */


/* second-section */
.second-section {
    padding: 160px 0 100px;
}

.second-section .content-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

.price-group {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0;
}

.price-box {
    width: 100%;
}

.price-box ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-box ul li {
    width: auto;
    background-color: var(--colorWhite);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
}

.days {
    width: 110px;
    height: 40px;
    border: 1px solid var(--colorGray300);
    box-sizing: border-box;
    background-color: var(--colorGray100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fontSizeLg);
    line-height: var(--lineHeightMd);
    font-weight: var(--fontWeightSemibold);
}

.price-box ul li>p {
    width: 200px;
    text-align: center;
    background: linear-gradient(90deg, #C80000 0%, #930000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--colorTransparent);
    font-size: var(--fontSize4Xl);
    font-weight: var(--fontWeightBold);
    line-height: var(--lineHeight2Xl);
}

.price-box ul li:last-child {
    grid-column: span 2;
    border: 1px solid var(--colorPrimary);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.price-box ul li:last-child .days {
    background-color: var(--colorBlack);
    border: none;
    color: var(--colorWhite);
}

/* second-section */





/* responsive css */
@media screen and (min-width: 768px) and (max-width: 1279px) {

    /* fist-section */
    .first-section {
        padding: 135px 0 0;
    }

    .static-section .content-inner>img {
        width: 561px;
    }

    .dynamic-section .content-inner>img {
        width: 510px;
    }

    /* fist-section */


    /* second-section */
    .second-section {
        padding: 100px 0;
    }

    .second-section .content-inner {
        gap: 40px 0;
    }

    .price-box {
        width: 100%;
    }

    .price-box ul li {
        padding: 20px;
        gap: 0 12px;
    }

    .days {
        width: 60px;
        height: 32px;
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightSm);
    }

    .price-box ul li>p {
        width: auto;
        font-size: var(--fontSize2Xl);
        line-height: var(--lineHeightXl);
    }

    /* second-section */
}

@media screen and (max-width: 767px) {

    /* fist-section */
    .first-section .content-inner {
        gap: 30px 0;
    }

    .first-section .desc br {
        display: none;
    }

    .static-section img {
        content: url(/images/about/mo-static-introduction-img.png);
    }

    /* fist-section */


    /* second-section */
    .second-section {
        padding: 80px 0;
    }

    .second-section .content-inner {
        gap: 30px 0;
    }

    .second-section .desc br{
        display: none;
    }

    .price-group {
        gap: 30px 0;
    }

    .price-box {
        width: 100%;
    }

    .price-box ul {
        grid-template-columns: 1fr;
    }

    .price-box ul li {
        padding: 20px;
        gap: 0 12px;
    }

    .price-box ul li:last-child {
        grid-column: span 1;
    }

    .days {
        width: 60px;
        height: 32px;
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightSm);
    }

    .price-box ul li>p {
        width: 108px;
        font-size: var(--fontSizeXl);
        line-height: var(--lineHeightLg);
    }

    .price-group .btn{
        width: 100%;
    }

    /* second-section */
}