/* for dsp Item Page */


#i-content img {
    width: 100%;
}

#i-content iframe {
    width: 100%;
}

#i-content iframe.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* 横 / 縦 */
}

#itmInfo {
    min-height: 860px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-bottom: 10px;
}

#footerInfo {
    min-height: 300px;
    overflow: hidden;
}

#cop,
.cop {
    width: 100%;
    background: #FFF;
    padding: 20px;
    font-size: 90%;
    border: 1px solid #666666;
    font-weight: bold;
    line-height: 1.5em;
}

#fixBnr {
    width: 180px;
    height: 180px;
    position: fixed;
    bottom: 20px;
    right: 5px;
    z-index: 999;
    overflow: hidden;

    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

#fixBnr2 {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
}

#top-iframe {
    width: 100%;
}

.info.title {
    border-bottom: 2px solid #004d2d;
    color: #004d2d;
    font-weight: bold;
}

.spec {
    background: #aaa;
    width: 100%;
    margin: 10px 0;
    border: 0;
    border-spacing: 1px;
    text-align: left;
}

.spec th,
.spec .th {
    width: 150px;
    background: #004d2d;
    color: #FFF;
    font-weight: bold;
    padding: 8px;
}

.spec td {
    background: #fff;
    padding: 8px;
}

.key {
    font-size: 65%;
    color: #666666;
}

h1.caution {
    color: #fff;
    background: #cc0033;
    padding: 5px;
    box-sizing: border-box;
    font-size: 1.2em;
}

span.caution {
    color: #cc0033;
}

p.boxMsg {
    border: 2px solid #585858;
    padding: 10px;
    font-size: 1.1em;
}

@media screen and (max-width:760px) {
    #itmInfo {
        min-height: 90vh;
    }

    #footerInfo {
        min-height: 400px;
    }

    #fixBnr {
        width: 120px;
        height: 120px;
        bottom: 60px;
        right: 5px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* dsp huck */
.price-line:not(:has(.tag))::after {
    content: "3,980円以上で送料無料";
    font-size: .8em;
    font-weight: 500;
    padding: 2px .4em;
    background: #ba2a35;
    color: #fff;
    border-radius: 5px;
    vertical-align: top;
}