.recommend-ttl {
    font-size: 2rem;
    background: #287fd9;
    display: block;
    color: #fff;
    line-height: 1.2;
    padding: 11px 25px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-weight: bold;
}

@media (min-width: 768px) {
    .recommend-ttl {
        display: inline-block;
        border-radius: 10px 10px 0 0;
    }
}

.flexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #e0efff;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.flexbox-left img {
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .flexbox {
        flex-direction: row;
        border-radius: 0 10px 10px 10px;
    }
}

.flexbox-left {
    width: 250px;
}

.flexbox-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .flexbox-right {
        width: calc(100% - 270px);
    }
}

.flexbox-right .subttl {
    font-size: 2rem;
    font-weight: bold;
}

.flexbox-right h3 {
    font-size: 2.8rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .flexbox-right h3 {
        font-size: 3.8rem;
    }
}

.flexbox-right .comment {
    font-size: 1.6rem;
}

.link-btn_column {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.flexbox-right .link-btn {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 7px;
    font-size: 1.7rem;
    background: #287fd9;
    color: #fff;
    position: relative;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .flexbox-right .link-btn {
        padding: 7px;
        font-size: 1.7rem;
    }
}

.flexbox-right .link-btn.or {
    background-color: #ff9800 !important;
    color: #fff !important;
}

.link-btn:hover {
    opacity: 0.7;
}

.osusume_sct {
    position: relative;
    margin-bottom: 30px;
}

.pb-badge {
    position: absolute;
    top: -20px;
    left: -6px;
    z-index: 10;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #fff;
    border-radius: 50% / 40% 60% 60% 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.1;
    font-size: 15px;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.pb-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.product-spec {
    margin-bottom: 10px;
}

.product-spec p {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
}

.product-spec p span {
    color: #d00;
}

@media (min-width: 768px) {
    .product-spec p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .link-btn_column {
        flex-direction: column;
    }
    .flexbox-right .link-btn {
        width: 100%;
        font-size: 1.5rem;
    }
}

.heading-16 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: sans-serif;
}

.heading-16::before, .heading-16::after {
    width: 3px;
    height: 40px;
    background-color: #ff9900;
    content: '';
}

.heading-16::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.heading-16::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

@media (max-width: 767px) {
    .heading-16 {
        font-size: 16px;
    }
    .heading-16::before, .heading-16::after {
        width: 3px;
        height: 25px;
        background-color: #ff9900;
        content: '';
    }
    .heading-16::before {
        transform: rotate(-35deg);
        margin-right: 15px;
    }
    .heading-16::after {
        transform: rotate(35deg);
        margin-left: 15px;
    }
}