/* デスクトップ用選ばれる理由セクション（768px以上） */

.top-features-header {
    padding: 0 0 64px;
}

.top-features-label {
    font-size: 14px;
    margin-bottom: 24px;
}

.top-features-title {
    font-size: 56px;
    line-height: 1.2;
}

.top-reasons-fullwidth {
    padding: 0 0 100px 0;
}

.top-reasons-fullwidth > .container:first-child {
    padding-top: 100px;
}

.top-reasons-list {
    gap: 80px;
}

.top-reason-item {
    padding: 0;
    gap: 40px;
}

.top-reason-item:nth-child(1) {
    gap: 36px;
}

.top-reason-item:nth-child(2) {
    gap: 48px;
}

.top-reason-item:nth-child(3) {
    gap: 42px;
}

@keyframes slideInFade1Desktop {
    from {
        opacity: 0;
        transform: translateX(-40px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-12px);
    }
}

@keyframes slideInFade2Desktop {
    from {
        opacity: 0;
        transform: translateX(-40px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(8px);
    }
}

@keyframes slideInFade3Desktop {
    from {
        opacity: 0;
        transform: translateX(-40px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-6px);
    }
}

.top-reason-item:nth-child(1) {
    animation: slideInFade1Desktop 0.8s ease-out 0.2s forwards;
}

.top-reason-item:nth-child(1):not(:hover) {
    transform: translate3d(-12px, 0, 0);
}

.top-reason-item:nth-child(2) {
    animation: slideInFade2Desktop 0.8s ease-out 0.4s forwards;
}

.top-reason-item:nth-child(2):not(:hover) {
    transform: translate3d(8px, 0, 0);
}

.top-reason-item:nth-child(3) {
    animation: slideInFade3Desktop 0.8s ease-out 0.6s forwards;
}

.top-reason-item:nth-child(3):not(:hover) {
    transform: translate3d(-6px, 0, 0);
}

.top-reason-item:nth-child(1):hover {
    transform: translate3d(4px, 0, 0);
}

.top-reason-item:nth-child(2):hover {
    transform: translate3d(24px, 0, 0);
}

.top-reason-item:nth-child(3):hover {
    transform: translate3d(10px, 0, 0);
}

.top-reason-item:nth-child(1) .top-reason-badge {
    width: 100px;
    height: 100px;
    font-size: 16px;
}

.top-reason-item:nth-child(2) .top-reason-badge {
    width: 112px;
    height: 112px;
    font-size: 20px;
}

.top-reason-item:nth-child(3) .top-reason-badge {
    width: 104px;
    height: 104px;
    font-size: 16px;
}

.top-reason-item:nth-child(1) .top-reason-title {
    font-size: 38px;
}

.top-reason-item:nth-child(2) .top-reason-title {
    font-size: 32px;
}

.top-reason-item:nth-child(3) .top-reason-title {
    font-size: 36px;
}

.top-reason-item:nth-child(1) .top-reason-text {
    font-size: 16px;
}

.top-reason-item:nth-child(2) .top-reason-text {
    font-size: 20px;
}

.top-reason-item:nth-child(3) .top-reason-text {
    font-size: 18px;
}

