@charset "UTF-8";

/* product item */
.product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product-item__l {
    width: 45.545%;
}

.product-item__r {
    width: 50.09%;
}

.product-item__cat {
    color: var(--color-blue);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.9;
}

.product-item__ttl {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.611;
}

.product-item__data {
    margin-top: 55px;
}

.product-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.product-nav__item {
    cursor: pointer;
}

.pthumb-img img {
    width: 100%;
    border: solid 1px transparent;
}

.product-nav__item.is-current .pthumb-img img {
    border-color: var(--color-blue);
}

/* product description */
.product-dsr > div + div {
    margin-top: 70px;
}

/* service */
.product-svc__link {
    margin-top: 60px;
    text-align: center;
}


@media screen and (max-width: 899px) {

    /* product item */
    .product-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 30px;
    }

    .product-item__l,
    .product-item__r {
        width: 100%;
    }

    .product-item__cat {
        font-size: 16px;
        font-size: min(4.27vw, 20px);
    }

    .product-item__ttl {
        font-size: 30px;
        font-size: min(8vw, 36px);
    }

    .product-nav {
        gap: 2.13vw;
        margin-top: 15px;
        margin-top: min(4vw, 25px);
    }

    /* product description */
    .product-dsr > div + div {
        margin-top: 55px;
    }

    /* service */
    .product-svc__link {
        margin-top: 40px;
    }

}