@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* soldout */

.soldout {
	position: relative;
    width: 100%; 
    height: 100%;
    font-family: 'Shippori Mincho', sans-serif;
}
.soldout img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
}

.soldout .txt {
    position: absolute;
    inset: 0;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.soldout .tit_close {
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
}

.soldout .tit_copy {
    font-size: 160px;
    line-height: 1;
    font-weight: bold;
    margin: 40px 0 60px;
}

.soldout .txt_close {
    font-size: 19px;
    line-height: 2;
}

@media screen and (max-width: 1024px) and (min-device-height: 1366px) and (orientation: portrait) {
}

@media screen and (max-width: 768px) {
    .soldout .tit_close {
        font-size: min(6vw, 64px);
    }

    .soldout .tit_copy {
        margin: 10px 0 30px;
        font-size: min(15vw, 160px);
    }

    .soldout .txt_close {
        font-size:min(4vw, 19px);
    }
}