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

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

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

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

a.model-item__image,
a.model-item__content-box {
    text-decoration: none;
    color: inherit;
}

.model-item__image,
.model-item__content-box {
    display: flex;
}

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

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

.model-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;
    overflow: hidden;
}

.model-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.model-item__image .model-item__image--sp {
    display: none;
}

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

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

.model-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: var(--product-text-color, #fff);
}

.model-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: var(--product-text-color, #fff);
    line-height: clamp(25px, 3.37vw, 33px);
}

.model-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: var(--product-text-color, #ccc);
}

.model-item__description p {
    margin: 0;
}

.model-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;
}

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

@media (min-width: 1025px) {
    .model-item__content-box {
        transition: height 0.4s ease;
    }

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

    .model-item:not(.model-item--no-link):hover .model-item__arrow {
        transform: translateY(-50%) translateX(15px);
    }

    .model-item--no-link {
        cursor: default;
    }

    .model-item--no-link .model-item__content-box {
        cursor: default;
    }
}

@media (max-width: 1025px) and (min-width: 768px) {
    .model-list {
        padding: 60px 0 150px;
        background: linear-gradient(to left, var(--products-section-bg, #E5E5EA) 20%, #FFFFFF 20%);
    }

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

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

    .model-list__items {
        gap: 40px;
    }

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

    .model-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: #000 !important;
    }

    .model-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;
    }

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

    .model-item__strip {
        width: 9px;
    }

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .model-list {
        padding: 100px 0;
        background: linear-gradient(to left, var(--products-section-bg, #E5E5EA) 25%, #FFFFFF 25%);
    }

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

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

    .model-list__items {
        gap: 75px;
    }

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

    .model-item__image .model-item__image--pc {
        display: none;
    }

    .model-item__image .model-item__image--sp {
        display: block;
    }

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

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

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

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

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

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

    .model-item__strip {
        width: 9px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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