@charset "UTF-8";

/* スライド共通 */
.slide-item-link {
    display: block;
    width: 100%;
    height: 100%;
}
.slide-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-item-title {
    position: absolute;
}

/* カタログ詳細へ(矢印) */
.slide-item-arrow {
    position: absolute;
    width: 232px;
    height: 36px;
}
.slide-item-arrow::before {
    content: 'カタログ詳細へ';
    font-size: 16px;
    font-weight: 700;
    margin-left: 1em;
}
.slide-item-arrow::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -3px;
}
/* カタログ詳細への色：白 */
.text-color-white {
    color: #fff;
}
.slide-item-arrow.text-color-white::after {
    background-image: url(/assets/img/index/top_arrow.svg);
}

/* シンコールフロア */
.slide-item-sincolfloor .slide-item-title {
    bottom: 40px;
    left: 40px;
}
.slide-item-sincolfloor .slide-item-title img {
    width: 520px;
    height: auto;
}
.slide-item-sincolfloor .slide-item-arrow {
    bottom: 40px;
    right: 6%;
}

/* メディアクエリ */
@media screen and (max-width: 1024px) {
    .slide-item-sincolfloor .slide-item-title {
        bottom: 20px;
        left: 10px;
    }
    .slide-item-sincolfloor .slide-item-title img {
        width: 194px;
    }
    .slide-item-arrow {
        display: none;
    }
}