.product-list {
    position: relative;
    margin-top: -1px;
    padding: 50px 0 200px;
    background: linear-gradient(to left, var(--products-section-bg, #E5E5EA) 20%, #FFFFFF 20%);
}

.product-list__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(40px, 8.33vw, 120px);
}

.product-list__header {
    margin-bottom: clamp(20px, 3.06vw, 30px);
}

.product-list__items {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3.06vw, 30px);
}

a.product-item__content-box {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

a.product-item__image {
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.product-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product-item__content-box {
    position: relative;
    width: clamp(350px, 41.67vw, 600px);
    height: clamp(190px, 22.92vw, 330px);
    background-color: #000;
    z-index: 2;
    order: 1;
    transition: height 0.4s ease;
}

@media (hover: hover) {
    .product-item:hover .product-item__content-box {
        height: clamp(287px, 34.72vw, 500px);
    }
}

.product-item__image {
    width: clamp(430px, 52.08vw, 750px);
    height: clamp(287px, 34.72vw, 500px);
    flex-shrink: 0;
    z-index: 1;
    margin-left: clamp(-87px, -10.42vw, -150px);
    order: 2;
}

.product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item__strip {
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(8px, 1.22vw, 12px);
    height: 100%;
    background-color: var(--brand-color, #FFD700);
}

.product-item__content {
    padding-left: clamp(55px, 8.16vw, 80px);
    color: inherit;
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-item__name {
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    margin: 0 0 clamp(4px, 0.51vw, 5px);
    line-height: clamp(30px, 3.98vw, 39px);
    color: inherit;
}

.product-item__intro {
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-size: clamp(13px, 1.63vw, 16px);
    font-weight: 500;
    margin: 0 0 clamp(15px, 2.04vw, 20px);
    color: inherit;
    line-height: clamp(25px, 3.37vw, 33px);
}

.product-item__description {
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-size: clamp(11px, 1.33vw, 13px);
    line-height: clamp(23px, 3.06vw, 30px);
    font-weight: 300;
    color: inherit;
}

.product-item__description p {
    margin: 0;
}

.product-item__arrow {
    position: absolute;
    right: clamp(30px, 4.59vw, 45px);
    top: 50%;
    transform: translateY(-50%) translateX(0);
    color: var(--brand-color, #FFD700);
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .product-item:hover .product-item__arrow {
        transform: translateY(-50%) translateX(15px);
    }
}

.product-item__arrow svg {
    width: clamp(30px, 3.47vw, 50px);
    height: auto;
}

/* Mid-range: 1025px - 1439px */
@media (max-width: 1439px) and (min-width: 1025px) {
    .product-item {
        justify-content: flex-start;
    }

    .product-item__content-box {
        height: clamp(220px, 24vw, 360px);
        overflow: hidden;
    }

    .product-item:hover .product-item__content-box {
        height: clamp(287px, 34.72vw, 500px);
    }

    .product-item__content {
        padding-left: clamp(28px, 3vw, 42px);
        width: 70%;
    }

    .product-item__name {
        line-height: clamp(27px, 3.1vw, 36px);
    }

    .product-item__intro {
        line-height: clamp(22px, 2.6vw, 30px);
    }

    .product-item__description {
        line-height: clamp(20px, 2.3vw, 27px);
    }
}

@media (max-width: 1025px) and (min-width: 768px) {
    .product-list {
        padding: 60px 0 150px;
    }

    .product-list__container {
        max-width: none;
        padding: 0 30px;
    }

    .product-list__header {
        margin-bottom: 60px;
    }

    .product-list__items {
        gap: 40px;
    }

    .product-item {
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        position: relative;
    }

    .product-item__content-box {
        flex: 0 0 clamp(280px, 43vw, 400px);
        width: clamp(280px, 43vw, 400px);
        height: auto;
        order: 1;
        z-index: 2;
        margin-top: 0;
        align-self: center;
        transition: none;
        background-color: var(--products-bg-color, #000);
    }

    .product-item__image {
        flex: 0 0 60vw;
        width: 60vw;
        max-width: none;
        height: auto;
        order: 2;
        margin: 0;
        margin-left: -10vw;
        z-index: 1;
        align-self: stretch;
    }

    .product-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-item__strip {
        width: 9px;
    }

    .product-item__content {
        padding: 30px 70px 30px 39px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        height: auto;
    }

    .product-item__name {
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 8px;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__intro {
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        margin-bottom: 14px;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__description {
        font-size: 13px;
        line-height: 22px;
        font-weight: 400;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__description p {
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }

    .product-item__arrow svg {
        width: 26px;
    }
}

@media (max-width: 768px) {
    .product-list {
        padding: 100px 0;
    }

    .product-list__container {
        padding: 0 1rem;
    }

    .product-list__header {
        margin-bottom: 100px;
    }

    .product-list__items {
        gap: 75px;
    }

    .product-item {
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }

    .product-item__image {
        width: calc(100% - 30px);
        max-width: 360px;
        height: 450px;
        aspect-ratio: 360/450;
        order: 1;
        margin: 0;
        z-index: 1;
    }

    .product-item--even .product-item__image {
        align-self: flex-end;
        margin-left: 0;
    }

    .product-item--odd .product-item__image {
        align-self: flex-start;
        margin-right: 0;
    }

    .product-item__content-box {
        width: calc(100% - 30px);
        max-width: 360px;
        height: auto;
        order: 2;
        z-index: 2;
        margin-top: -150px;
        transition: none;
    }

    .product-item:hover .product-item__content-box {
        height: auto;
    }

    .product-item:hover .product-item__arrow {
        transform: none;
    }

    .product-item--even .product-item__content-box {
        align-self: flex-start;
        margin-right: 0;
    }

    .product-item--odd .product-item__content-box {
        align-self: flex-end;
        margin-left: 0;
    }

    .product-item__strip {
        width: 9px;
    }

    .product-item__content {
        text-align: left;
        text-wrap: wrap;
        padding: 30px 65px 30px 39px;
        width: 100%;
        box-sizing: border-box;
    }

    .product-item__name {
        font-size: 15px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 8px;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__intro {
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
        margin-bottom: 15px;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__description {
        font-size: 13px;
        line-height: 24px;
        font-weight: 300;
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__description p {
        word-break: break-all;
        text-wrap: wrap;
    }

    .product-item__arrow {
        position: absolute;
        transform: none;
        right: 15px;
    }

    .product-item__arrow svg {
        width: 25px;
    }

    .product-item__image,
    .product-item__content-box {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    .product-item__name,
    .product-item__intro,
    .product-item__description {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .product-item.visible .product-item__image {
        opacity: 1;
        transform: translateY(0);
    }

    .product-item.visible .product-item__content-box {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .product-item.visible .product-item__name {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
    }

    .product-item.visible .product-item__intro {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.8s;
    }

    .product-item.visible .product-item__description {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 1.0s;
    }
}
