.special-movie {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 45%),
        radial-gradient(circle at 85% 15%, rgba(214,235,255,.55) 0%, rgba(214,235,255,0) 45%),
        radial-gradient(circle at 80% 85%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f9fbff 25%,
            #eef5ff 55%,
            #f7fbff 80%,
            #ffffff 100%
        );
}

.special-inner title {
        display: block;
    top: 0;
    margin: 0px auto 30px;
    text-align: center;
    font-size: 30px;
    color: #555;

}

.special-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.special-left {

}

.special-left h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #3b4d6d;
    margin-bottom: 15px;
    text-align: center;
}


.special-left h3 {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    letter-spacing: .08em;
}

.lead {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin: 45px auto;
    width: 280px;
}

.btn-more {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 320px;
    height:64px;
    border-radius:60px;
    text-decoration:none;
    color:#fff;
    font-size:22px;
    font-weight:700;
    background:
    linear-gradient(90deg,#d6b2b8,#b68d97);
    transition:.3s;
}

.btn-more:hover {
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}


.btn-more::after {
    content: "→";
    transition: .35s;
}

.special-right {
    width:62%;
}

.special-right .sp {
    display: none;
}

.movie {
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.movie iframe {
    width:100%;
    aspect-ratio:16 / 9;
    border:none;
}

.product-intro {
    background: #dccec3;
    padding: 0px 20px 0px 0;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.product-intro .item {
    max-width:1100px;
}

.product-wrap {
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:30px;
}

.product-image {
    flex:1;
}

.product-image img {
    max-width: 407px;
    display:block;
}

.product-card {

}

.card-inner {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    margin: 20px auto;
}

.card-inner::before {
    content:"";
    position:absolute;
    inset:0;
    padding:6px;
    border-radius:10px;
    pointer-events:none;
}

.card-sub {
    display:block;
    letter-spacing:3px;
    font-size:13px;
    color:#888;
    margin-bottom:8px;
}

.product-card h2 {
    font-size: 23px;
    color: #858c4b;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card h3 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.product-card .title {
        font-size: 19px;
    text-align: center;
    color: #b9909a;
    margin: 0 0 20px;
    border-bottom: 1px solid #b89099;
}

.product-card p {
    line-height:2;
    color:#555;
    font-size:15px;
    margin-bottom:35px;
    text-align: left;
    font-weight: 500;
}

.product-card .btn {
    display:inline-block;
    background: linear-gradient(90deg, #d6b2b8, #b68d97);
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.btn:hover {
    background:#9d6d2e;
}



@media(max-width:768px){

    .special-inner {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .special-left,
    .special-right {
        width:100%;
    }

    .special-left {
        text-align:center;
    }

    .lead {
        margin: 12px auto;
    }

    .special-left h2 {
        display: none;
    }

    .special-left h3 {
        text-align: center;
        font-size: 20px;
        color: #555;
        margin-bottom: 15px;
        letter-spacing: .08em;
    }

    .special-right .sp {
        display: block;
        font-size: 21px;
        line-height: 1.3;
        font-weight: 600;
        color: #3b4d6d;
        margin-bottom: 15px;
        text-align: center;
    }

    .movie {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
        margin: 10px;
    }

    .lead {
        margin: 10px auto;
    }

    .btn-more {
        width: 100%;        
        max-width: 230px;
        font-size: 14px;
        height: 50px;
    }

    .product-intro {
        padding: 0 0 10px 0;
        margin: 0 auto 30px;
    }

    .product-card h2 {
        font-size: 20px;
    }

    .product-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .product-card .title {
        font-size: 16px;
    }

    .product-image img {
        max-width: 320px;
    }

    .product-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .product-wrap {
        display: block;
    }

    .product-image img {
        max-width: 340px;
    }

    .card-inner {
        margin: -130px 10px 20px;
        padding: 20px 20px;
    }

}